in enyo I can't find any documentation that tells tyou how to chnage the Properties. For example in the documentation it has disabled as one of the properties. What would the java script code be to set that property, so I could make the button go on and off?

link|improve this question

78% accept rate
feedback

1 Answer

up vote 1 down vote accepted

Let's say you have something like:

/* Enyo controls code */
{name: "detailButton", disabled:true, caption: "Details"},
/* More Enyo code */

To change that property, just use Enyo's property system:

myFunction: function() {
    this.$.detailButton.setDisabled(false);
}

You can define your own properties using:

published:{
    myProperty: ""
}

You will then have a setMyProperty() function and a myPropertyChanged() to observe changes in your property

link|improve this answer
You probably want this.$.detailButton.setDisabled(false); Also, that property system is Enyo sugar, not something built-in to JavaScript. – Pre101 Dec 21 '11 at 8:38
Hi,Thank you, guess I'm going to have to learn java script. – Ted pottel Dec 22 '11 at 0:29
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.