This is a migrated thread and some comments may be shown as answers.

How can I catch changed event from textbox in the grid editable row

1 Answer 824 Views
Grid
This is a migrated thread and some comments may be shown as answers.
logoflowtelerikdemo
Top achievements
Rank 1
logoflowtelerikdemo asked on 18 Jul 2016, 12:48 PM

I am putting onchange evet in grid option but when ı edit or add new row  the event doesnt fire

 

1 Answer, 1 is accepted

Sort by
0
Daniel
Telerik team
answered on 20 Jul 2016, 07:42 AM
Hello,

The grid change event is fired on selection. You can use the grid dataSource change event and check the event argument field e.g.
function onDataSourceChange(e) {
    if (e.field == "MyField") {
        var model = e.items[0];
        //your logic
    }
}
Another option is to bind a change handler to the input in the edit event or using a custom editor.

Regards,
Daniel
Telerik by Progress
 
Get started with Kendo UI in days. Online training courses help you quickly implement components into your apps.
 
Tags
Grid
Asked by
logoflowtelerikdemo
Top achievements
Rank 1
Answers by
Daniel
Telerik team
Share this question
or