Hi,
I have a scenario where Age is one of the column in my grid.
For that column I am using following syntax, and I am not using any ItemTemplate or FilterTemplate
And this column allow user to enter only numbers. I have requirement where I need to stop the user to not to give more than 3 digits.
Ultimately this header filter should allow user to enter only 3digit number. Suggest me how to achieve this? I have used MaxLength but this property is not used for this filter scenario.
I am thinking of finding that filter text box and adding a javascript method to it and handle that at client side, but I was not able to find the Filter text box Control.
I would appreciate if any one help me find a solution.
I have a scenario where Age is one of the column in my grid.
For that column I am using following syntax, and I am not using any ItemTemplate or FilterTemplate
<telerik:GridNumericColumn DataField="Age" FilterControlWidth="20px" UniqueName="Age" HeaderText="Age" EmptyDataText="-" HeaderStyle-HorizontalAlign="Center" DataType="System.Int32" MaxLength="3" FilterControlAltText="Age"></telerik:GridNumericColumn>And this column allow user to enter only numbers. I have requirement where I need to stop the user to not to give more than 3 digits.
Ultimately this header filter should allow user to enter only 3digit number. Suggest me how to achieve this? I have used MaxLength but this property is not used for this filter scenario.
I am thinking of finding that filter text box and adding a javascript method to it and handle that at client side, but I was not able to find the Filter text box Control.
I would appreciate if any one help me find a solution.