Hello,
I trying test integration Tabbar with Grid, but I unable to get working this together. Chrome console still returning error attachgrid is not a function. This integration is PRO feature or should be work on Standard free version please?
Here is my testing code based on DHX sample code:
[code]
Integration with dhtmlxGrid var myTabbar;
var myGrid;
function doOnLoad() {
myTabbar = new dhtmlXTabBar("my_tabbar");
myTabbar.addTab("a1", "Tab 1-1", null, null, true);
myTabbar.addTab("a2", "Tab 1-2");
myGrid = myTabbar.cells("a1").attachGrid();
myGrid.setImagePath("./codebase/imgs/");
myGrid.load("./grid.xml");
}
</script>
[/code]
Thanks for your ideas.