Are there any DHTMLX users out there?
We have an app that is being developed that renders fine in Firefox and Chrome, but is suffering greatly under IE. Any thoughts?
Copied from IE detailed error diaglog box:
Webpage error details
User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729) Timestamp: Thu, 29 Oct 2009 20:16:33 UTC
Message: 'rows[...].id' is null or not an object Line: 665 Char: 156 Code: 0 URI: http://xxx.xxx.com/coreLib/d开发者_StackOverflow中文版htmlx/dhtmlxGrid/codebase/dhtmlxgrid.js
Message: HTML Parsing Error: Unable to modify the parent container element before the child element is closed (KB927917) Line: 0 Char: 0 Code: 0 URI: http://xxx.xxx.com/dd/medentry/accession/edit/9093368657
TIA
There is an ultimate solution for this problem - run js code from onload event. In case of dhtmlx toolkit it can be organized as
dhtmlxEvent(window, "load", function(){
... place components initialization here ...
})
精彩评论