Grid will not work with IE

Why the Grid does not work with IE?

Although it works with Mozilla, Opera and Safari



Regards

Ersin

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?

the link is www.ersinkaplan.de
login:
pw:
*
then select articel and then click on search

regards
ersin

edit:
the version is 2.1

thanks


a) change the order from






to the





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


o thank you very much :slight_smile: