Thank you for your response.  In the getRowClass

    getRowClass : function(rowInfo) 
    {
      var cssClasses = this.base(arguments, rowInfo);
      
      return !(rowInfo.row % 4) ? cssClasses + " red" : cssClasses;
    }

The *rowInfo.row* property is present, I can't see *rowInfo.col* in debug
which could be easily translated to:

    getRowClass : function(rowInfo) 
    {
      var cssClasses = this.base(arguments, rowInfo);
      
      return (rowInfo.col === 4) ? cssClasses + " red" : cssClasses;
    }

Sorry I'm not an HTML/CSS guy.



--
View this message in context: 
http://qooxdoo.678.n2.nabble.com/Set-Background-Color-of-Nth-Table-Column-tp7586948p7586952.html
Sent from the qooxdoo mailing list archive at Nabble.com.

------------------------------------------------------------------------------
Dive into the World of Parallel Programming The Go Parallel Website, sponsored
by Intel and developed in partnership with Slashdot Media, is your hub for all
things parallel software development, from weekly thought leadership blogs to
news, videos, case studies, tutorials and more. Take a look and join the 
conversation now. http://goparallel.sourceforge.net/
_______________________________________________
qooxdoo-devel mailing list
qooxdoo-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to