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
onetwokathreeonetwokathree 

Visualforce Controller Extensions - dynamic field values not updating through VF pages

We have created one cutom object "Add questions" having some fields.

From VF we have created page with controller Extention for custom object(Add question) and added one text field dynamiccally on page to existing object(Add question) and override Custom Object (Add question) by the VF Page.

 

when we try to insert record to the overrided(Add question) object, then value of the newly added text field not saved in the Object.

how i can do this, please help us.

 

Cool_DevloperCool_Devloper

Are you using the standard "Save" method?

If no, then make sure you are binding the field with a property mehod in the controller which will help you to save the value in the custom "Save" method!

Cool_D