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

There is no problem to use dhtmlxgrid in dhtmlxtabbar
    dhtmlx.com/docs/products/dhtmlxT … htmlx.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);
    });