简体   繁体   中英

kendo grid row should be selected while editing

I have a grid that is bind with 4 input box . when I click on a grid row : inputs value is set with the columns data from that row .

and if from first input I go to second input , the grid row exit selected style , but I want to be selected while user is busy with editing .

I use this code in dataBound code :

 var contact = $("#contact-grid").data("kendoGrid").tbody.find('tr[data-uid="' + this._selectedContact.uid + '"]');
    $("#contact-grid").data("kendoGrid").current(contact);

but it doesnt work and close edit view after blur from an input to another

ok I find :) . and post it to help others ,maybe one day ...

should write this code on grid dataBinding event :

private _onGridDataBinding(e){
 if(e.action == "itemchange")
   {e.preventDefault();}
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM