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
enTran01enTran01 

inputTextArea and button not working!

I have this hidden inputTextArea that diplsyas when A link is click. I also have this button that is suppose to save the contents of that inputTextArea but for some reason the contents of the inputTextArea remain empty.

 

<form>

 

<inputTextArea style="display:none;" value="{!bodyContent}"/>

 

<commandButton action="{!submit}"/>

 

 

</form>

 

<form>

 

<commandLink onclick="changeTextAreaStyle()/>

 

 

Edwin VijayEdwin Vijay

soemthing to do with the form tags maybe,

 

try using a single apex:form for the entire page and wrap all contents within the form,