CheckBoxes styling lost

Hi!
I discovered a bug in 2.5.0.48 (it worked in 2.5.0.8): if you uncheck the items of a TIWCGJQMCheckButtons in an ajax event handler, they loose their JQM styling. I have not made a full investigation if this relates just to unchecking, or to changing the value etc.
Best regards
Magnus Oskarsson
I discovered a bug in 2.5.0.48 (it worked in 2.5.0.8): if you uncheck the items of a TIWCGJQMCheckButtons in an ajax event handler, they loose their JQM styling. I have not made a full investigation if this relates just to unchecking, or to changing the value etc.
- Code: Select all
procedure TMyMobileDialog.FooterIWCGJQMPageFooterToolbarItems1JQMButtonOptionsEventsVClick(
Sender: TObject; AParams: TStringList);
var
i: Integer;
begin
MyCheckButtons.CheckButtons.BeginUpdate;
for i := 0 to MyCheckButtons.CheckButtons.Count - 1 do
MyCheckButtons.CheckButtons[i].Checked := False;
MyCheckButtons.CheckButtons.EndUpdate;
MyCheckButtons.AjaxReRender;
end;
Best regards
Magnus Oskarsson