I am adding (UIInput) to the footer columns (UIColumn) of a datatable (UIData) created dynamically. The UIData is bound to a datatable tag in the jsp. In the datatable, I just have headers and footers with the header having the labels and footer having the corresponding value in editable textbox. When I change the value and submit the form using a commandButton and I try to access the UIInput value using .getValue() in the action method, I just get the old values and not the values updated in the page. I tried binding it to an attribute in the backing bean and checked the values being set in the setter. I notice that the old values are being set and the values I updated in the page do not reflect in the action method or setter. I tried using .getValue, .getLocalValue, .getSubmittedValue. None of these give me the new values. Any suggestions what I might be doing worng?
I managed to workaround by pulling the values from requestParameterMap. If there is a fix for the issue please do let me know. McDowell - thanks for your inputs.