i am using below code to keep scrollbars in synch between 2 tables.
scrollmode: 'deferred',
scrollfeedback: function(row)
{
var position = $("#jqxgridChild").jqxGrid('scrollposition');
var left = position.left;
var top = position.top;
$('#jqxgrid').jqxGrid('scrolloffset', top, left);
$('#strikeTbl').jqxGrid('scrolloffset', top, left);
}
and both tables has row details as well.. (they are same size) but when row details is opened.. scrollbars are not keeping the synch.. if user closes the rowdetails.. everything works fine
how can i fix this