There is a problem having the mapping variable for an input text box as part of the Value object which is part of the backing bean. The page does not get submitted on clicking the submit button. Instead the same page gets refreshed.
The
jsf code for the input text box is as follows
<t:inputText id=”confirm” value = “#{backing bean.valueobject.inputtext}”></t:inputText>
But when I have the mapping variable ‘inputtext ’ as part of the backing bean it works fine.
The question is - Can’t we have the mapping variable for an input field as a part of the value object which is a part of the backing bean.