Assigning TIWCGJQEdit to TIWCGPanelListItem

In my quest to build a property editor, I'd like to utilize two vertical, parallel panel lists. The left panel list will contain the names of the various properties and the panel list on the right will contain the various CG Dev tools edit components to match the property data type.
In this example, I want to create a TIWCGJQEdit component and assign it to the panel list item I just added.
TIA!
Scott
OK, hold on a minute... I just looked @ the CGDev Tools demo and found the TreeView demo to be perfect for my needs.
In this example, I want to create a TIWCGJQEdit component and assign it to the panel list item I just added.
- Code: Select all
procedure TframePropertyEditor.IWCGJQFrameCreate(Sender: TObject);
var
itemEditPanel: TIWCGPanelListItem;
itemEdit: TIWCGJQEdit;
begin
itemEditPanel := Self.listPropertyNames.Items.Add;
itemEditPanel.Caption := 'StartDate';
itemEditPanel := Self.listPropertyValues.Items.Add;
itemEdit := TIWCGJQEdit.Create(Self);
itemEdit.Parent := itemEditPanel;
end;
TIA!
Scott
OK, hold on a minute... I just looked @ the CGDev Tools demo and found the TreeView demo to be perfect for my needs.