03-06-2020, 09:33 AM
I can't recreate this.
- I create a new project from scratch.
- Add a new IWCheckBox
- Add an event OnAsyncClick with the following code:
if IWCheckBox1.Checked then begin
WebApplication.ShowMessage('Checked');
end else begin
WebApplication.ShowMessage('Unchecked');
end;
Everything works as expected.
- Then I remove this code and add the same code to OnAsyncChange event.
- I got the same result, i.e. the method works as expected.
Can you please see if you can recreate following the same steps above?
- I create a new project from scratch.
- Add a new IWCheckBox
- Add an event OnAsyncClick with the following code:
if IWCheckBox1.Checked then begin
WebApplication.ShowMessage('Checked');
end else begin
WebApplication.ShowMessage('Unchecked');
end;
Everything works as expected.
- Then I remove this code and add the same code to OnAsyncChange event.
- I got the same result, i.e. the method works as expected.
Can you please see if you can recreate following the same steps above?

