3.2.0

Problem in firefox with beta 2.0


hi Alex im trying the new beta version and i know it works in FF but i got some problem to render in.
I currently use the version 1 and try to transfert it in beta 2.0 for use the new multiheader function.

my code works in IE but not in FF can u help me with this .. ?
am I missing something ?

header..

<style type='text/css'>

    #myGrid { width: 990px;height: 55%}

    #myGrid .aw-grid-row {height: 17px; border-bottom: 1px solid #ccc}

    #myGrid .aw-alternate-even {background: white;}
    #myGrid .aw-alternate-odd {background: lightblue;}

    #myGrid .aw-mouseover-row {background : lightgreen;}

    #myGrid .aw-rows-selected {background: #316ac5;}

    #myGrid .aw-column-0 {width: 50px; border-right: 1px dotted #ccc}
    #myGrid .aw-column-1 {width: 150px; border-right: 1px dotted #ccc}
    #myGrid .aw-column-2 {text-align: center ;border-right: 1px dotted #ccc}
    #myGrid .aw-column-3 {width: 200px;text-align: center;border-right: 1px dotted #ccc}
    #myGrid .aw-column-4 {width: 400px;text-align: left}

    #myGrid .aw-grid-headers {color: Black}

    #myGrid .aw-mouseover-header {color: green;}
    #myGrid .aw-mousedown-header {color: darkgreen;}

    #myGrid .aw-header-1 {background: beige}


</style>


and in my body...

<script type="text/javascript" src="runtime/lib/aw.js"></script>
<link href="runtime/styles/xp/aw.css" rel="stylesheet"></link>

<script type='text/javascript'>
    var obj = new AW.Grid.Extended;

    obj.setId("myGrid");	// necessary for CSS rules

    obj.setFixedLeft(0);	// number of fixed columns on the left side

    obj.setCellText(myData);	// 2-dimensional js array

    obj.setHeaderCount(2);

    obj.setHeaderText(myColumns);	// js array (see top of this page)
    obj.setHeaderText(["Total", "", "", "6.5", "45"], 1); // js array for the second row of headers

    obj.setColumnCount(5);

    obj.setRowCount(<?php echo $NbrRow?>);

    obj.setSelectionMode("single-row");

    document.write(obj);


</script>


Thx for the help
keep good work :)
DaKrown
October 28,
v2 dosn't support firefox yet......

It is been released in v2 beta2
J
October 28,

u sure of that ?

the examples\quickref\grid.html of the V2 beta1

I test it and it works in FF ? why ?
DaKrown
October 28,
http://www.activewidgets.com/javascript.forum.7569.9/activewidgets-2-0-beta1-released.html
J
October 31,
I do know what you mean though most things appear to work ok
J
October 31,
Most things will work, but FF is not Officially Supported yet. There are still things that do not work. You will find that Beta1 will also work to some extent in most other browsers but they are not Officially Supported either. Once a browser is listed as being supported, then feel free to post bugs against it. Until then, any success you have on an unsupported browser is simply a bonus, use at your own risk.
Jim Hunter
October 31,

This topic is archived.

See also:


Back to support forum