Cannot change status of TWebCheckBox programmatically

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!

We traced & solved this issue. The next update will address this.

Version 3.0.1.2 has indeed fixed the problem, thanks!

FTR, I saw that you left some console logging in the code:

Thanks
Removed
Next update will fix this