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
Kamatchi Devi SargunanathanKamatchi Devi Sargunanathan 

Need help for Java script not working on <apex:inputtextarea /> when rich text is true.

Hi All,

 

I have a requirement to do the javascript in the Onkeyup event on RichTextArea in VF page. But the script am trying to load is working properly in the normal inputtextarea, if i gave richtext="true" then it is not working. Please help me to do this.

 

See the following code,

 

VF page

<apex:page >
<apex:includeScript value="{!$Resource.jquery}"/>

<script type="text/javascript">

function check(f){
alert("f");
}
function check1(f){
alert("f");
}
</script>

<apex:form id="frm1">
<apex:inputtext id="one" onkeyup="return check(this);"/>  //This is not working
<apex:inputtextarea richtext="true" id="e" onkeyup="return check1(this);"/> //This is working
<apex:commandbutton id="n" value="save" disabled="true"/>
</apex:form>

</apex:page>

 

Waiting for the solution.

 

Thanks  in Advance.

 

 

 

 

Ashish_SFDCAshish_SFDC
Hi Kamatchi, 

I could not find any information or sample related to this. 

This issue would need further investigation. Raise a support case. 

Regards,
Ashish
clouduserclouduser
Could you please let me know if you have got any update?
Ashish_SFDCAshish_SFDC
Hi Raj, 


I do not think there was a Support case raised for this issue, 

Even if you are facing the same issue, you may also raise a Support case for further investigation. 


Regards,
Ashish
Kamatchi Devi SargunanathanKamatchi Devi Sargunanathan
Sorry all, 

I didn't raise a case regarding this issue. 

Could some one guide me, is this issue should be posted in Ideas or need to create a case reagaring Technical issue?

Thanks in advance...!
Ashish_SFDCAshish_SFDC
Hi Kamatchi, 


This behavior has to be investigated and check the, Log a Support case. 

If there is a specific feature which has to be enhanced then we post it to Ideas. 


Regards,
Ashish


Kamatchi Devi SargunanathanKamatchi Devi Sargunanathan
Thanks Ashish.