This question is locked. New answers and comments are not allowed.
Hi using master detail grid with Client binding. Master grid row is selectible. When I click row in master grid, I will to display "loading... " message / image. I tried following code in script, but it doesn't show "loading... ".
Any idea what am I doing wrong?
function TreeGrid_OnRowSelect(e) { $('#loading').show(); var grid = $(e.row).parents('.t-grid').data('tGrid'); var indexOfIdColumn = GetGridColumnIndexByName(grid, "Id"); var pId = e.row.cells[indexOfIdColumn].innerHTML; var similarGrid = $('#SimilarGrid').data('tGrid'); $('#loading').hide(); // rebind the related grid similarEntityGrid.rebind({ pId: pId }); }Any idea what am I doing wrong?