PC SOFT

FOROS PROFESIONALES
WINDEVWEBDEV y WINDEV Mobile

Inicio → WINDEV 2024 → [WB21] - Events Firing Sequence
[WB21] - Events Firing Sequence
Iniciado por guest, 11,jul. 2016 20:37 - 2 respuestas
Publicado el 11,julio 2016 - 20:37
Hi All

I think I read this somewhere but want to confirm; for a control - do the various code blocks in the code editor for a control also indicate the order in which they fire? i.e. let's say for a table control, the code editor shows:

Init (server)
Row Selection (Browser) then
Row Selection (Server) then
Row Display (Server) then
Row Exit (Server) then
Click (Browser)

Would that also be the firing sequence if one clicks the control?
Publicado el 11,julio 2016 - 20:57
Hi JP,

NO!

init is done when loading the page

Row selection browser THEN server when a row is selected (click or keyboard)

Row display when a row is displayed (init, of course, but also scrolling)

Row exit when exiting a row in edit mode

and click when use clicks on a line of a table

They have nothing to do with each other

Best regards
Publicado el 11,julio 2016 - 21:04
OK, thanks Fabrice. Was sure I read something like that but the mind is going fuzzy - new-info overload!