up vote 0 down vote favorite
share [g+] share [fb]

I have dropdown with dynamic values.for example in dropdown have 1,5,10,20.

when page loading need to display the 5 only.How to do in the jsf ?

link|improve this question
provide the code of the view and the bean – iimuhin Sep 4 '10 at 20:12
feedback

1 Answer

Preset the property associated with the value attribute with the desired value in bean's constructor.

public Bean() {
    this.selectedItem = 5;
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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