Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by Ersin Kaplan on Sep 10, 2009 02:10
open dhtmlx forum
Grid will not work with IE

Why the Grid does not work with IE?
Although it works with Mozilla, Opera and Safari

Regards
Ersin
Answer posted by dhxSupport on Sep 10, 2009 04:14
Unfortunately we cannot reproduce this issue by information provided by you. Please provide us link or any other kind of sample where we can reproduce this issue. What version of dhtmlxGrid do you use?
Answer posted on Sep 10, 2009 06:41
the link is www.ersinkaplan.de
login:*********
pw:**********
then select articel and then click on search

regards
ersin
Answer posted on Sep 10, 2009 05:41
edit:
the version is 2.1

thanks
Answer posted by Support on Sep 10, 2009 06:41

a) change the order from

<script src="dhtmlx/dhtmlxWindows/ext/dhtmlxwindows_wtb.js"></script>
<script src="dhtmlx/dhtmlxWindows/dhtmlxwindows.js"></script>
<script src="dhtmlx/dhtmlxWindows/ext/dhtmlxwindows_wmn.js"></script>

to the

<script src="dhtmlx/dhtmlxWindows/dhtmlxwindows.js"></script>
<script src="dhtmlx/dhtmlxWindows/ext/dhtmlxwindows_wtb.js"></script>
<script src="dhtmlx/dhtmlxWindows/ext/dhtmlxwindows_wmn.js"></script>

b) you can include dhtmlxcommon.js only once ( not a problem, just a tip ) 

c) main reason of the problem - incorrect size settings for the grid
currently you are have 

mygrid.setHeader("ID,Beschrebung, Inhalt");
mygrid.setInitWidths("100%,*");

the second command must have the same count of arguments as the first one and they need to be numbers or * mark 
mygrid.setHeader("ID,Beschrebung, Inhalt");
mygrid.setInitWidths("*,*,*"); //for example

Answer posted on Sep 10, 2009 11:41
o thank you very much :-)