row or text coloring in list view
currently im using images for status but when I used another database i was able to color the whole row. I have see examples of zoho creator with alternating row colors and I'm wonder if that could be scripted with and if else if statement for each record of contains statement
- if (status == done) {
- currentrow.color = (255,0,0)
- } elseif (status == pending) {
- currentrow.color = (0,0,255)
- } else {
- }