Hi,
I've upgraded to TMS WEB Core 3.0.1 and can no longer programmatically set the status (checked or not checked) of a TWebCheckBox.
To demonstrate this I created a new web app, added a TWebCheckBox and then wrote the following in the OnShow event:
procedure TForm1.WebFormShow(Sender: TObject);
begin
WebCheckBox1.Checked := true;
console.log(WebCheckBox1.Checked);
end;
This is the result:
The checkbox is not checked and the Checked property remains false.
Thanks!

