for specific rows color change in browse form I can use the code as below, from one of the topic disscussed before on the forum - and it works fine.
but the question I have is:
Can you give some tips how to change the complete column color (from the very top to the bottom in browse form) ?
- Code: Select all
if (nuFormType() == 'browse') {
$('[data-nu-column="2"]').each(function (index) {
var cellId = $(this).attr('id');
var cellValue = $('#' + cellId).html();
var rowNum = String(cellId).split('_')[1];
if (cellValue == "completed") {
$("div[id^='nucell_" + rowNum + "']").css("color", "blue");
}
else {
} });}