Skip to content Skip to sidebar Skip to footer

Alloyui (diagram-builder) Extends

I'm trying to customise diagram builder, I created new type of node and trying to add custom attributes with custom editor. I just extend from dropdownCellEditor and it already doe

Solution 1:

After many hours of debugging obfuscating code I've found that hide function works by just adding into class: your editor name plus '-hidden', so to make it workable need to add :

.mycustomcelleditor-hidden { display: none; }

into css, stupid implementation BTW.

Post a Comment for "Alloyui (diagram-builder) Extends"