Hi there, I'm adding a dynamic column at run-time, but when the user clicks the "new record" button, I don't want the new column to have the ability of having user input.
I know that if I was doing this at design-time, then I would just add empty <EditItemTemplate></EditItemTemplate> tags.
So, at the moment - I'm building my column like this :
What I'd like to do is add something like :
objBoundColumn.EditItemTemplate = False
Can anyone out there tell me how to do that please ?
I know that if I was doing this at design-time, then I would just add empty <EditItemTemplate></EditItemTemplate> tags.
So, at the moment - I'm building my column like this :
'Add a new column showing the data from the attribute search boxDim objBoundColumn As New GridBoundColumnradgridContacts.MasterTableView.Columns.Add(objBoundColumn) objBoundColumn.DataField = AttributeList.SelectedItem.Value objBoundColumn.HeaderText = AttributeList.SelectedItem.Value objBoundColumn.UniqueName = "tempColumn"
What I'd like to do is add something like :
objBoundColumn.EditItemTemplate = False
Can anyone out there tell me how to do that please ?