Categories | Question details Back To List | ||
Click in Tabbar, update grid He is possivel using the components: dhtmlxGrid and dhtmlxTabbar When click in tabbar the content of grid update? Forgives me insistence! Thanks Answer posted on Oct 30, 2007 03:27 There is no problem to use dhtmlxgrid in dhtmlxtabbar http://dhtmlx.com/docs/products/dhtmlxTabbar/samples/interaction_other_components/tab_dhtmlx.html If you want to reload grid on tab change you can use code similar to next tabbar.setOnSelectHandler(function(tabId){ grid.clearAll(); grid.loadXML(url); }); |