Fred Lefévère-Laoide
Fred Lefévère-Laoide
resolves #691 ``` from taipy.gui import Gui, State bval = True def on_change(state: State, var: str, val: str): print(f"on_change(state, var={var}, val={val})") md = """ Demo Toggle as switch """ Gui(md).run()...
resolves #950
HI, It would be very helpfull to be able to have positional informations (line, column) to each element of the resulting object. I guess this would be optional. I would...
resolves #1044  ``` from taipy.gui import Gui, Icon msgs = [ ["1", "msg 1", "Fred"], ["2", "msg From Another unknown User", "Fredo"], ["3", "This from the sender User", "taipy"],...
**Description** Refactoring of variable binding to ensure we manage what's get send to the front-end ... **Acceptance Criteria** - [ ] Ensure new code is unit tested, and check code...
### What went wrong? 🤔 Should this be called `search` or `local filter` ? Should the UX be refined ? related to #1305 ### Screenshots 
- can't update eslint as react hook plugin doesn't support 9+ - disable rule about unused expression as it would not allow a && c() - fix unused variables in...
resolves #1669 resolves a few mypy/ruff "errors" in python as well ``` import taipy as tp from taipy import Config def identity(input): print(" Identity") return input Config.configure_job_executions(mode="standalone", max_nb_of_workers=2) ## Input...