3.2.0

Remove Column Count Row + header

Remove Column Count Row + header
How do i do this?
Joe
January 23,
or just hide it
January 23,
Example to hide column:
var display = 'none';
var Column = 0;
if(navigator.appName == "Netscape") {
        document.styleSheets[document.styleSheets.length-1].insertRule("#Grid .aw-column-" + Column + " {display:" + display + ";}", 0);
    } else if(navigator.appName == "Microsoft Internet Explorer") {
        document.styleSheets[document.styleSheets.length-1].addRule("#Grid.aw-column-" + Column ,"display:" + display + ";");
    }
Jaime González
May 5,

This topic is archived.

See also:


Back to support forum