fiogf49gjkf0d I couldn't find this anywhere but just as an FYI, here is the Code Snippet code to hide columns, this is working in 7.5.4, so not sure about previous versions:
((System.Web.UI.WebControls.DataControlField)((Sage.Platform.Controls.IDataGridColumn)form.Grid.Columns[3]).NativeColumn).Visible = False
So you will need to replace the Grid with the one you are hiding the column within and the column number will need to be changed to the column that you wish to hide. Please remember that this has a base of 0. |