Hi all,
In StockList Demo code (file "index.html"), in function formatValues(), i don't know how to change the highlight color?

----
function formatValues(item, itemUpdate) {
...
//choose the backgroundColor
var backC = (item % 2 == 1) ? "#eeeeee" : "#ddddee";
var backH = itemUpdate.getServerValue(14);
itemUpdate.setRowAttribute(backH,backC,"backgroundColor"); --> how to re-defined backgroundColor?

//choose the "change" field stylesheet
var newChng;
if ((newChng = itemUpdate.getFormattedValue(3)) != null)
{
var hotTxtCol = (newChng.charAt(0) == '-') ? "#dd0000" : "#009900";
itemUpdate.setAttribute(3,"black",hotTxtCol,"color ");
itemUpdate.setAttribute(3,"bold","bold","fontWeigh t");
}

...
--------
Can anybody help me?