Child pages
  • CLIENTDESIGN
Skip to end of metadata
Go to start of metadata


Constants Summary
String #HANDLES
Property that can be set using elements['element_1'].
String #SELECTABLE
Property that can be set using elements['element_1'].

Constants Details
HANDLES
Property that can be set using elements['element_1'].putClientProperty(...), it sets the available handles in clientdesign
Returns
String
Sample
//by default all are present. ('l' stands for left, 't' stands for top, etc.)
elements['element_1'].putClientProperty(CLIENTDESIGN.HANDLES, new Array('r', 'l')); // other options are 't', 'b', 'r', 'l', 'bl', 'br', 'tl', 'tr'
SELECTABLE
Property that can be set using elements['element_1'].putClientProperty(...), it sets the selectable flag in clientdesign
Returns
String
Sample
//by default an element with an name is selectable in client design
elements['element_1'].putClientProperty(CLIENTDESIGN.SELECTABLE, false);
  • No labels