Sha256: 6bacc5a5b3de8f6442c611fd5f30e7b3bee9a13e4ca6c830a0333b84054aeff7
Contents?: true
Size: 1.02 KB
Versions: 20
Compression:
Stored size: 1.02 KB
Contents
/*** = Description ** Define default setting here. Will be used, when no or invalid constructor ** options are supplied. ***/ var//RSence.Foundation HControlDefaults = HClass.extend({ /** The default label. A label is the "visual value" of a component that * operates on a "hidden" value. **/ label: "", /** The default initial visibility of the component. **/ visible: true, /** The default initial event responders to register to a component. * By default no events are enabled. **/ events: null, constructor: function(){ if(!this.events){ this.events = {}; } }, /** The default initial value of the component. **/ value: 0, /** The default initial enabled state of the component. **/ enabled: true, /** The default initial active state of the component. **/ active: false, /** The default initial minimum value of the component. **/ minValue: -2147483648, /** The default initial maximum value of the component. **/ maxValue: 2147483648 });
Version data entries
20 entries across 20 versions & 1 rubygems