我在我们的应用程序中使用EXTJS 3.0。我在窗口中显示一个表单面板。我在表单面板中使用HTML编辑器。将光标放在编辑器中,在FF 3.6中正常工作。但在FF 10.0中它的投掷错误说
未捕获的异常:[Exception ...“组件返回失败代码:0x80004003(NS_ERROR_INVALID_POINTER)[nsIDOMHTMLDocument.queryCommandState]”nsresult:“0x80004003(NS_ERROR_INVALID_POINTER)”location:“JS frame :: ext-all-debug.js: ::: line 58124“data:no]
光标没有放在编辑器中。
版本有什么问题?
以下是我在java脚本文件中编写的代码
** var test = new Ext.form.HtmlEditor({
id:'testing',
name:'tests',
fieldLabel:'Test',
width:200,
height:150,
allowBlank:false,
enableColors : true,
enableFont : false,
enableFontSize: true,
enableFormat: true,
enableLists: true,
enableSourceEdit: false,
listeners: {
sync: function(f){
}
}
}); ** 请帮我摆脱这个浏览器问题
谢谢&此致
宾度
HighRadius