Is there any way to change the IsReadOnly column property for just the InsertRow that is being created?
I am using the RadGridView control to enter data (e.g. line items in a shopping cart). The first column is the part number, a keyed entry in the underlying data schema. The column is defined as a readonly column because a user cannot change the part number in the grid once it has been committed to the database. But when the program executes the BeginInsert method to allow data entry for a new grid line item, the column for just the insert row must allow for data entry so that the part number can be entered. If I change the column to IsReadOnly = False during the AddingNewDataItem event that changes all grid rows; not just the new insert row that has not yet been committed.
I am using the RadGridView control to enter data (e.g. line items in a shopping cart). The first column is the part number, a keyed entry in the underlying data schema. The column is defined as a readonly column because a user cannot change the part number in the grid once it has been committed to the database. But when the program executes the BeginInsert method to allow data entry for a new grid line item, the column for just the insert row must allow for data entry so that the part number can be entered. If I change the column to IsReadOnly = False during the AddingNewDataItem event that changes all grid rows; not just the new insert row that has not yet been committed.