Matthias Kahlau wrote:
Hi all!
I have an non-immediate inputText in my form, and an immediate commandButton
to delete some selected rows in a table. When the user enters some text in
the inputText and deletes some rows after that, the same JSF page is
redisplayed, but the inputText is empty again. Why isn't the submitted value
of the inputText rendered?
It will be in the usual case.
Perhaps your button is inside a different form from the one containing
your input text? HTML only supports submitting one form, so all
components in other forms will see their input as missing, ie will have
their submitted value reset..
Regards,
Simon