Hello,
I have a checkbox to which I have associated a change event. Is it possible to set that the checkbox is already checked and to make sure that the relevant event has already started?
Thank you
No, the CheckBox will trigger its change event only when the user clicks it. You can implement your requirements having this under consideration.
Thank you for your answer.