I have h:inputText, h:selectOneMenu in every row in a table. I also have delete button at the end of each row. On-click of delete button corresponding row is deleted. When I delete a row, number of rows displayed in the table is reduced by one but the data is still displayed from old row. Condider the following example:
Consider I have three rows:
Text1 comboxBox1 delete1
Text2 comboxBox2 delete2
Text3 comboxBox3 delete3
on-click of delete1:
Current behaviour
Text1 comboxBox1 delete2
Text3 comboxBox3 delete3
Expected behaviour
Text2 comboxBox2 delete2
Text3 comboxBox3 delete3
One weird thing that I observed is that, when I changed inputText to outputText the data is getting refreshed. I am facing this problem only with input components (textArea, testBox, combo-box and check-box).
I am using JSF1.2, Spring web-flow in portal environment.