Skip to main content

I need to update Richtext control field value on submit. I am able to update all other types using following but not richtext. I am aware that we need to deal richtext differently and tried but could not succeed.

 

//works for single line of text but not for richtext

NWF$('#'+ReviewHistory).val("Completed Update");

Try this:

var txtmyRich = NWF$('#'+ ReviewHistory).closest('tr').find('div[id$="_inplacerte"]');

txtmyRich.html("Completed Update");


Hi Fernando,

I have already tried this but no success. I checked id and I don't see id with _inplacerte. Please find below view source of my form


Reply