This is a migrated thread and some comments may be shown as answers.

[Solved] refreshing the tab content from the client through Ajax by passing additional parameters

0 Answers 53 Views
TabStrip
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Ramakrishna
Top achievements
Rank 1
Ramakrishna asked on 21 Feb 2012, 08:27 PM
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:
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?
}
Tags
TabStrip
Asked by
Ramakrishna
Top achievements
Rank 1
Share this question
or