registerType

registers a new editor type for property sheet elements

void registerType(string name,object data);
namestringthe name of the new editor
dataobjectthe data object that includes template, click behavior and editor

Example

prop.registerType("popup", {
    editor:"popup"
});

Related samples

Details

Editors are based on standard Webix editors that can be either taken as they are or with extra functionality added with the help of the extend method.

Study the Property Sheet article for details.

See also
Back to top