PC SOFT

FOROS PROFESIONALES
WINDEVWEBDEV y WINDEV Mobile

Inicio → WINDEV 2024 → WB19 - no OnChange event radiobutton (browser)
WB19 - no OnChange event radiobutton (browser)
Iniciado por guest, 16,ene. 2015 15:49 - 2 respuestas
Publicado el 16,enero 2015 - 15:49
Hi,

a radiobuttons doesn't seem to have an change/click event in browsercode. Only servercode.
There's only OnExit, but then you have to "leave" the controls first (by tab or click somewhere else)

To avoid a servertrip I would like a browserside-click-event in some cases, where serverside data or actions are not needed. Then the user response is as fast as possible.

What options/workarounds can I use?
Publicado el 16,enero 2015 - 17:15
Hi Arie,

Try the on click event ( client side )

I did a little test and it works


IF MySelf = 1 THEN
Info( "1")
END

regards
Allard

PS
Click on the button with the ... with the more processes tekst Then you get the mouse click event ( client side )
Publicado el 16,enero 2015 - 17:41
How simple, I missed that one!
Thanks.