WebHtmlEditor replace content in entire html body of the page, but it should be particular WebHtmlEditor control range only.
Please give a direction to fixes the issue in Version 8.1.20081.1000
Hello ananth_pillai,
The NetAdvantage version you are using is no longer supported. I would suggest that you upgrade your products to the latest version available.
Please let me know if you have any other questions.
Issue : WebHtmlEditor Replace and Replace All functionality not working properly
Solution detail
File : ig_htmleditor_ie.js
Find code : if(fr.findText(txt,this._findLen,flag))try{fr.select();this._findNum++;return true;}catch(s){}
To Replace code :
if(fr.findText(txt,this._findLen,flag))try { s=fr.parentElement(); while(s) { if(s==this._elem){fr.select();this._findNum++;return true;} s=s.parentNode; } }catch(s){}