My company utilizes some custom library routines for validation on input controls. To use these, I have to know the control's id. I was able to work with the id naming conventions for some column types because they will use the UniqueName as a portion of the id (such as GridDropDownColumn / RadComboBox and GridNumericColumn / RadNumericTextBox), but the GridBoundColumn does not use the UniqueName property to render the textbox id.
Is there a way to force it to use the UniqueName property? Or is there another column type to use for plain text input that will respect setting this property?
Example code:
Thanks for any help or ideas you can provide.
Is there a way to force it to use the UniqueName property? Or is there another column type to use for plain text input that will respect setting this property?
Example code:
<telerik:GridBoundColumn DataField="LineNotes" DataType="System.String" |
HeaderText="Notes" SortExpression="LineNotes" UniqueName="LineNotes"> |
</telerik:GridBoundColumn> |
renders as |
<input name="RadGrid1$ctl00$ctl02$ctl03$ctl00" type="text"/> |
Thanks for any help or ideas you can provide.