This question is locked. New answers and comments are not allowed.
I am having an impossible time with this. This is the 2nd time I'm asking this question as I've already asked here (http://www.telerik.com/community/forums/aspnet-mvc/grid/updating-editable-grid-with-jquery.aspx).
I have a grid in batch editing mode. I need to update some of the cells in the grid manually using jquery.
Here is my code:
The last line updates the actual table cell, but it seems as if there is more to be updated. Change tracking is not working when I do it this way and it seems like there is a text box behind my TD element that does not get updated.
Please help.
Thanks
I have a grid in batch editing mode. I need to update some of the cells in the grid manually using jquery.
Here is my code:
var selectedTBIRow = $('#TBI tr.t-state-selected');$('#LookupDialog').dialog('close'); //Closes my lookup dialog box //Closing my lookup dialog box populates the hidden #LookupNamevar setString = '<span class="t-dirty"></span>' + $("#LookupName").html(); $('#TBI tr.t-state-selected')[0].cells[1].innerHTML = setString ;The last line updates the actual table cell, but it seems as if there is more to be updated. Change tracking is not working when I do it this way and it seems like there is a text box behind my TD element that does not get updated.
Please help.
Thanks