The following setup seems to draw my control twice. The first time with the original setup and then the second time with the new setup. One under the other. Reading the doc seems to imply I should see a replacement.
var sizingScenarios = {cols: [toolbar, scenarioListWithHeader, {view: "resizer"}, dataGridBody]};
var systemContexts = {cols: [toolbar, systemContextWithHeader, {view: "resizer"}, dataGridBody]};
var theWholeScreen = ({
container: "webixUItable",
id: "theWholeThing",
type: "wide"
});
theWholeScreen.rows = [ sizingScenarios ];
webix.ui(theWholeScreen);
theWholeScreen.rows = [ systemContexts ];
webix.ui(theWholeScreen, $$("theWholeThing"));
What am I not understanding?
thanks,
dk-