Wednesday, May 9, 2012

Update Width of column in SysListPanel

Hi,

To update the width of the left and right panel in SysListPanel control in AX2012, use below code.
sysListPanel.parmViewLeft().Width(500);
sysListPanel.parmViewRight().Width(500);

Also you can use FormListControl to override the properties.
You can find the helpful material from here.

/Ashlesh