- Code: Select all
procedure TframeEditSecurityProfile.SetSecurityProfileCode;
var
i: Integer;
begin
for i := 0 to Self.checkListCaseFileOptions.Items.Count - 1 do
Self.checkListCaseFileOptions.Items[i].Selected := Self.checkListCaseFileOptions.Items[i].Value = 'Y';
end;
Thanks,
Scott
UPDATE: I found TIWCGJQCheckBoxList.Enable and .Disable.

UPDATE 2: Although I found the .Enable and .Disable properties of the control and the check box list no longer jumps around during the process (above), when I uncheck and check various items in the list and click a button to determine which items are selected, the items that I removed the check still have .Selected = True. At the same time, the control header correctly shows the number of selected items.
Hmmm...