Hello,
RadioGroup.setValue() method doesn't trigger its change event. Is there any other way to trigger RadioGroup's change event programmatically?
Thanks
Sudip
Hello,
RadioGroup.setValue() method doesn't trigger its change event. Is there any other way to trigger RadioGroup's change event programmatically?
Thanks
Sudip
Hello! If you are using a JavaScript method to change the RadioGroup value, you should be able to call the triggered event directly in the same code without needing to rely on the UI change events.
Something like:
RadioGroup.setValue("stuff");
queryYouWantToTrigger.trigger();
Here is a link to some extra info around this concept: Run JavaScript | Retool Docs
The problem is solved! Thanks a lot :-))
Sudip