In jSF2.0 How can I make an <h:inputText> appear only after a specific button is clicked? I want the <h:inputText> be hidden, and only appear after I click a button
In jSF2.0 How can I make an <h:inputText> appear only after a specific button
Share
Could you simply use CSS “display: none” attribute on inputText and, in button onclick attribute, to change this for “display: block”. This is the more simple solution.