In html , To limit the number of characters a user can type into input fields, we use the attribute maxlength.
Ex:
<input type=“text” name=“fullname” maxlength=“5” />
So, the user cannot enter more than 5 charcters in the input text area.
What is the dhtmlx equivalent of the html attribute maxlength, so that the user cannot enter more than 5 characters in the input editable cell inside the dhtmlxgrid.
I dont want to limit the field Length using Dhtmlx Live Validation due to some issues.
Please Help