This question is locked. New answers and comments are not allowed.
Hi There,
I am getting problem with Grid Edit while using Edit, In Edit mode in dropdown and combobox the selected value is not getting bind.. Here is the code that i am using for binding selected value to the dropdown with ClientEvent of Grid.
Here the problem is some thing like in edit mode the value that binds to the drop down is fake viz correct value is not getting bind.. Any help would be appreciated.
Thanking you in Anticipation.
Regards,
Dhaval Shukla
I am getting problem with Grid Edit while using Edit, In Edit mode in dropdown and combobox the selected value is not getting bind.. Here is the code that i am using for binding selected value to the dropdown with ClientEvent of Grid.
if (e.mode == 'edit') {var bondDrpDwn = $('#bondid').data('tDropDownList');if (bondDrpDwn != undefined){ var id = e.dataItem['bondid'].id; var name = e.dataItem['bondid'].name; bondDrpDwn.fill(function () { bondDrpDwn.select(function (item) { return item.Text == name; }); });}}Thanking you in Anticipation.
Regards,
Dhaval Shukla