Hello Infragistics Team/Community,
I badly need your help to resolve my issue with Infragistics2.WebUI.WebHtmlEditor.v9.2. Undo/Redo button does not work in IE7 and 8 but in other browser like Mozilla Firefox and Google Chrome it works fine.
I am using a licensed NetAdvantage 2009 in my current project
QUESTION
Does anyone could help me in resolving this issue.... in ASP.NET?
Thanks in advance!Herald
i think there is a problem with execCommand Method [see Knowledge Base http://msdn.microsoft.com/en-us/library/ms536419%28v=vs.85%29.aspx ] . This method support command identifiers listed in these article http://msdn.microsoft.com/en-us/library/ms533049%28v=vs.85%29.aspx
the code above does not work also :'( please help me
Hi Herald,
WebHtmlEditor uses exactly those statements to perform undo/redo. Those statements are nothing more, but wrappers around document.execCommand(action,....).In case of IE, the functionality/action of that command can be rather unstable and it heavily depends on currently focused element, selection, etc.
Hello Viktor,
Does this line of code works to WebHTMLEditor v9.2?
var editor = iged_getById(‘<%=WebHtmlEditor.ClientID%>’);editor._format(‘undo’, ‘’, false, true);editor._format(‘redo’, ‘’, false, true);
Here is the version what am I using right now in my application.
Infragistics2.WebUI.WebHtmlEditor.v9.2, Version=9.2.20092.1003
Let me know how could I troubleshoot this issue.
Thanks in advance and more power.
regards,
-herald
PS:
I also tried this solutions>>> http://forums.infragistics.com/forums/t/36572.aspx and it seems not working too. :'(