Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
280
Min Length for any textbox value
posted

Hi,

I want to implement the min and max length. I could able to do it for Maxlength

.ColumnSettings(cs =>
{
cs.ColumnSetting().ColumnKey("RateIdentification1").TextEditorOptions(options =>
{
options.MaxLength(10);
});

Is there anything for MinLength?

Thanks

Indra

Parents
  • 0
    Offline posted

    The browser won't allow you to input more than 8 characters. because browser accepted less than 4 character.

Reply Children
No Data