how can I change normal text to text field
hi,
how can I change normal text into empty textfield when a button is clicked.
i.e. when a button is clicked,the normal text must be appeared.In that place,a empty textfield must be appeared.
hi,
how can I change normal text into empty textfield when a button is clicked.
i.e. when a button is clicked,the normal text must be appeared.In that place,a empty textfield must be appeared.
<h:outputText value="normal text" rendered="#{!myBean.showInputText}" />
<h:inputText value="#{myBean.inputValue}" rendered="#{myBean.showInputText}" />
Can you explain me clearly bcoz I am new to JSF
pls,help me
Especially look to the 'rendered' attribute.
If you don't understand it, ask your boss for a book/tutorial and a course.