function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
trishtrish 

InputField Data Rendering

Hi,
 
I have a requirement of creating a wizard to extract data copy pasted into a textArea and populating a custom object's fields. I tried using <inputField> tag with appropraite bindings. However, when I set the field value through apex controller code, the UI does not reflect this change.
 
As a workaround, I used <inputtext>. Value updates through code are refelected on the VF page but the values don't persist on wizard navigation i.e if I go to the next page and come back, the values are lost.
 
Appreciate any help on this!!!!
 
Thanks.
hisrinuhisrinu
Hi,

 If you are using same controller for the two pages, then the values will be available.
 If you are using different controllers then the values will be vanish.

what is the status for your pages? Either one controller or two controllers.