Thanks for the pointer. Too bad I find no documentation to let us know what the USE_TABLE and USE_ARRAY_JOIN do. Do you have any knowledge on this subject you would like to share?
Thanks,
Jim
On 10/27/06, Alex D. <[EMAIL PROTECTED]> wrote:
What combination of USE_TABLE and USE_ARRAY_JOIN are you using? And what function are you patching: _updateContent_orig or _updateContent_array_join ?
I use USE_ARRAY_JOIN:true, USE_TABLE:false and these lines in _updateContent_array_join work fine for me:
==============================================snip=======================================================
if (cellInfo.focusedRow && this.getHighlightFocusRow()) {
htmlArr.push(cellInfo.selected ? TablePane.CONTENT_BGCOL_FOCUSED_SELECTED : TablePane.CONTENT_BGCOL_FOCUSED);
} else {
htmlArr.push(cellInfo.selected ? TablePane.CONTENT_BGCOL_SELECTED : "red");
}
==============================================snap=======================================================
hope that helps
alex.d
I made a simple change to the TablePane.js file to allow me to change the font color of each row of a Table. It works perfect in all browsers except IE. All I get in IE is black text. I replaced:
rowElem.style.color = cellInfo.selected ? TablePane.CONTENT_COL_SELECTED : TablePane.CONTENT_COL;
with
rowElem.style.color = tableModel.getColor(row);
The method getColor returns the row color from an array of colors that has been added to the Table.
Can anyone think of a reason it doesn't work in IE? Colors in general work fine in IE so I see no reason why this wouldn't work.
Thanks,
Jim
-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel
-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel
------------------------------------------------------------------------- Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________ qooxdoo-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel
