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
Guru Vemuru 1Guru Vemuru 1 

Can i rerender a single input text field instead a whole section in vf?

Hi every one,
                     Please help out Can i rerender a single input text field instead a whole section in vf?
DeveloperSudDeveloperSud
Hi ,

As I checked there is no reRender attribute available for <apex:inputText> component.
You can refer the below post.Hope this will help with your requirement.
http://​https://developer.salesforce.com/forums/?id=906F000000094mOIAQ
Samadhan ForceSamadhan Force
Hi Guru,

yes you can rerender single input text field, you just need to wrap your input text as follows

<apex:outputPanel id="pnlTextBox">
<apex:inputText value="{!xyz}"/>
</apex:outputPanel>

after wrapping in output panel you need to use "pnlTextBox" in rerender attribute of action which is currently rerendering whole section.

you can post your code if this doesnt work we can suggest you best possible way.

-----
Thanks
SamadhanForce
kindaly mark as best answer if it help you​