Sales Order Line Custom Fields
Is there a way to programatically control the position/order of sales order line custom fields in grdLines or is the grid manager in the user interface the only way to do it?
SBarnes wrote:Is there a way to programatically control the position/order of sales order line custom fields in grdLines or is the grid manager in the user interface the only way to do it?
grid.ActiveSheet.MoveColumn(5, 10); // moves column 5 to column 10int colNo = grid.ActiveSheet.GetColumnFromTag(null, "ColumnKey").Index;