Create IWCGJQCheckBoxList item with code

Hi
I use this code for create IWCGJQCheckBoxList items .
On onclick event Button.But IWCGJQCheckBoxList don't show anything.What must be I set?
Best Regards.
I use this code for create IWCGJQCheckBoxList items .
- Code: Select all
for I := 1 to ADOQuery1.RecordCount-1 do
begin
with IWCGJQCheckBoxList1.Items.Add do
begin
Value:= ADOQuery1.Fields[0].AsString;
Caption:= ADOQuery1.Fields[1].AsString;
end;
end;
On onclick event Button.But IWCGJQCheckBoxList don't show anything.What must be I set?
Best Regards.