I have a boundcolumn with a column validator that looks like this:
The field January is an integer. How would I be able to make it allow ONLY integers. Currently I can enter "hello world" and save it.
<telerik:GridBoundColumn DataField="January" HeaderText="Jan" Aggregate="Sum" FooterAggregateFormatString="{0:n0}"> <ColumnValidationSettings EnableRequiredFieldValidation="true"> <RequiredFieldValidator ForeColor="Red" ErrorMessage="January required" Text="*" Display="Dynamic"></RequiredFieldValidator> </ColumnValidationSettings> </telerik:GridBoundColumn>The field January is an integer. How would I be able to make it allow ONLY integers. Currently I can enter "hello world" and save it.