I know this question has been posted a few times, and i´ve been reading about those solutions, but i need some help figuring out what am i missing.
What i want is the master grid to expand the last expanded row after a READ call, so i´ve read this and also this but nothing seems to work, my code is this:
detailExpand: function (e)
{
var grid = $("#gridTimesheets").data("kendoGrid");
expandedRowUid = e.masterRow.data('uid');
}
then on my master databound function i have this:
dataBound: function(e)
{
this.expandRow($('tr[data-uid=' + expandedRowUid + ']'));
}
the only thing that seems to expand the rows after the refresh is this:
this.expandRow(this.tbody.find("tr.k-master-row"));
but it expands all rows, i want only the last row before the READ method.
What am i missing here?