Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by D Taylor on Feb 28, 2008 16:04
open dhtmlx forum
Display Problems

Just purchased your treeGrid components today and also got everything working :-) but have a couple of issues :-

Developed and testing in IE 7 but ran site through IE 6 and none of the data was displayed but the column headings were displayed.

ALSO

I can't seem to get the skins to work. ie. the column headings, are just text. I tried myGrisd.setSkins("xp") and it didn't make any diffence.

Thanks in advance
Answer posted by Support on Feb 29, 2008 10:25
>>Developed and testing in IE 7 but ran site through IE 6 and none of the data was displayed

There is no special issues for IE6 support - the functionality must work in both browsers. Please check next, most common issues
    - the height and width of grid container set in any of possible ways
    - if you are using dynamical XML source , please be sure that it provides correct content type ( text/xml )

If problem still occurs for you - please send any kind of sample, where problem can be reconstructed, to support@dhtmlx.com

>>I can't seem to get the skins to work. ie. the column headings, are just text. I tried myGrisd.setSkins("xp") and it didn't make any diffence.
Please be sure that you included dhtmlxgrid.css file and have image folder in default location, css file contains some relative paths to image folders which work correctly when you are using default folders structure, but it need to be corrected if you are using different folder structure.

div.gridbox_xp table.hdr td {
    color:#616161;
    background-image:url('imgs/header_bg_60.gif');
Answer posted by Janet K. on Nov 10, 2009 02:03
I had the problem too (tabbar, tree, treegrid) and have a solution. The IE 6 handle of divs is differently from IE 7 or Mozilla. The joint usage of width = 100% and border=1 could make problems. Because there is no space for the content. So reducing the width (e.g. 99%) solves the problem. Or put another div around the treegrid-div with the border style and comment out the border style in css.