Check and Uncheck checkbox not working in NEW UI
// ANTONIO CARIA - ALL RIGHTS RESERVED
// ctrl - controller
// p - json parameters
// return input JQuery Checkbox
function crtChk(ctrl,p) => { const e = new CheckBoxElement(); e.Name = p.Name e.IsChecked = p.IsChecked e.IsEnabled = p.IsEnabled e.Position = { Height: 1, Width: 3, Left: p.Left, Top: p.Top }const b$ = ctrl.GetContentElement().AddElement(e), i$ = b$.parent().find(HTML.INPUT);i$.attr('checked', e.IsChecked) !e.IsEnabled && i$.attr('readonly', !0) return i$})