Hi,
I want to limit the input for this column from 0 to 5 only
<ej:TreeGridColumn Field="DataElement" HeaderText="Data Element" EditType="Numeric" FilterEditType="Numeric">
<ValidationRule>
<ej:KeyValue Key="0" Value="0" />
<ej:KeyValue Key="1" Value="1" />
<ej:KeyValue Key="2" Value="2" />
<ej:KeyValue Key="3" Value="3" />
<ej:KeyValue Key="4" Value="4" />
<ej:KeyValue Key="5" Value="5" />
</ValidationRule>
</ej:TreeGridColumn>
But the code above doesn't limit the input I can still input any number?
David