Highlight color in Table View

I have a form in Table View, can I change the highlight color of the selected record?

The background of your rows, including the selected one, can be defined by a rowBGColorCalculation.

Create a calculation, for example:

var index = arguments[0];
var selected = arguments[1];

if (selected) {
	return "#6699cc";
} else if (index % 2 == 0) {
	return "#ddeeff";
}

return "#ffffff";

and attach that to the rowBGColorCalculation-property of your form. Make sure that your fields are not “transparant”.

Great! Thanx :)