Check documentation for the latest version of dhtmlxSuite define DHTMLX Docs

define

configures some mode of DataView

void define(string mode,boolean value);
modestringname of the mode or the property which needs to be configured
valuebooleanvalue which will be assigned to the mode or the property, true by default

Example

myDataView.define("select","multiselect")
myDataView.define("type",{
    template:"some here"
});

Details

list of supported properties can be checked here

Back to top