Hi ScottWGast,
As my colleague said, PaddingLeft property has been removed due to create confusion with padding Item.
Now, the padding of caption is calculated automatically, having regard to the image size.
was able to set the TIWCGJQPanelListItem.PaddingLeft property in order to move the .Caption over a bit when the item was clicked.
If you need this behavior, you should do it with css.
Example:
delphi code
procedure TIWForm10.IWCGPanelList1IWCGPanelListItems2Click(Sender: TObject; AParams: TStringList);
var
PLItem: TIWCGPanelListItem;
begin
PLItem:= Sender as TIWCGPanelListItem;
PLItem.ItemCss:= 'panellist-nav-item-li my-pl-item-visited';
end;
css code
.my-pl-item-visited .cgdev-pl-span-text {
padding-left: 40px;
}
Note: Ajax changing support is added in V2.1.0.3702Best Regards.