This code was valid in version 7.0.2
https://snippet.dhtmlx.com/ng3coflx
But after 7.0.3 is not.
To create a form without a root node is useful in optimus
. Other elements like Layout and Toolbar allow this. Is this a bug or I can’t do this in optimus
?:
export default class Content extends View {
init() {
return this.form = new dhx.Form(null, {
rows: [{
id: "name",
type: "text",
value: "Hello World"
}]
});
}
}