This question is locked. New answers and comments are not allowed.
Hi, I have a grid and a tabstrip control under the grid on the page. the tab control has several tabs and each of those tabs has a grid in them. the main grid is the master grid and when I select a row in the grid, I need to refresh the multiple detail grids in different tabs for the selected row.
now my question is, when I select a row in the master grid, how do I refresh the content in each of the tabs from the client-side? I need to be able to pass the data key for the selected row when refreshing each of the tabs. how can I do this?
I have this code:
now my question is, when I select a row in the master grid, how do I refresh the content in each of the tabs from the client-side? I need to be able to pass the data key for the selected row when refreshing each of the tabs. how can I do this?
I have this code:
function grdMaster_onRowSelected(e) { var grid = $(this).data("tGrid"); var dataItem = grid.dataItem($(e.row)); var tabDetail = $("#tabDetail").data("tTabStrip"); //how to refresh each of the tabs now, by passing the Id (data key) of the selected row?}