Dear Telerik ,
I have this problem I have a dynamic client side grid in which I add rows. one of the fields is a text field which represents a phone number. All input must be numeric and the length must not exceed 10 chars. so I added a templates that creates the input=text with a keyup="checkerfunction(this,maxlen);
When every the function finds that an the input is not allowed it trims the value of the text box text.value = "trimedValue";
every time the function manipulates the value there seems to be a problem in the binding of the textbox to the kendo dataSource of the grid when the row is saved the value returns to the value before the row was opened for editing when we check the value after a trim action by the function and durring the custom command handeling the saving of the row the value of the bound field in the dataSource is "" (empty string). what is the cause of all this.
Yours,
Ariel