Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by Anderson Simoes Vieira on Oct 29, 2007 12:54
open dhtmlx forum
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);
    });