Tim Child

Results 28 comments of Tim Child

I think there might also be an issue with the `rx.set_state` when used for the `rx.select` component: ``` import random import reflex as rx from ..templates import template choices =...

@masenf Thanks for looking into it. I guess the workaround is just to use a state var to keep track of the value and handle on_change for that component then....

For anyone reaching this... If the input is created with an `id` ``` rx.input(id='input_id', on_blur=...) ``` Then you can `yield/return` ``` rx.set_value('input_id', 'any text or empty string') ``` from an...

I also just started having this problem. I think from upgrading pycharm to 2024.1. Anyone know a solution for this? EnvFile: 3.4.2 PyCharm: 2024.1 OS: Windows but running remote interpreter...

Well, a possible solution... Don't use `EnvFile` at all... I've not noticed the option for "Paths to '.env' files" before, but it seems to work. Maybe it was recently introduced...

I am also interested in this

@abulvenz , Thanks for the suggestion! I've been too busy to come back to this yet, but it's still somewhere down there on my todo list... I'll update if I...

@sydney-runkle -- That's great! I'm sure it won't be long before that warning saves me lots of time :)

@clemlesne, This issue was originally related to rx.cached_var and rx.background not working in mixins, which is now fixed. So it is right that this issue is closed. Some sort of...

I'm also seeing this behaviour. @hexvolt Did you find a workaround?