Hi,
I have a TabStrip with 2 tabs. On each tab, there is a refresh button, and a RadGrid. When you hit the refresh button on the tab, it will do the following: (retrieves data + re-binds to grid)
function bLoadPrices_OnClientClick(sender,args){
QTXClient.WebServices.MonitorWebService.GetMonitorData(bLoadPrices_Complete,bLoadPrices_Error);
}
function bLoadPrices_Complete(result){
var tableView = $find("<%= gMonitor.ClientID %>").get_masterTableView();
tableView.set_dataSource(result);
tableView.dataBind();
}
function bLoadPrices_Error(result){
window.alert("Error! " + result);
}
The problem I am having is that when I rebind the data on 1 grid, it clears all data from the other grid. I don't understand why re-binding one grid will cause the other grid to refresh?
Please help!
thanks,
sharon