Documentation

registerType

registeres a new type for property sheet elements

void registerType(string name,object data);

Parameters

namestringname of the new editor
dataobject data object that includes template, click behaviour and editor

See also

Example

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

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 extend() method.

Study the Property Sheet article for details.

Back to top