Is it possible to use ColumnValidation and EditFormIndexColumnIndex index together?
I have a grid where the validation was working as expected. Added editformcolumnindex and now it cannot "find" those columns.
Example following works fine without EditFormIndexColumnIndex
<telerik:GridDropDownColumn DataField="itemManager" UniqueName="editManager" HeaderText="Manager" DataSourceID="sqlDataSource6" ListValueField="adId" ListTextField="adName" EditFormColumnIndex="2" EnableEmptyListItem="true" EmptyListItemText="Select" DropDownControlType="RadComboBox"> <ColumnValidationSettings EnableRequiredFieldValidation="true" EnableModelErrorMessageValidation="true"> <RequiredFieldValidator ForeColor="Red" ErrorMessage=" Required Field"></RequiredFieldValidator> <ModelErrorMessage BackColor="Red" /> </ColumnValidationSettings></telerik:GridDropDownColumn>