Resetting colors in views on Web

I’m testing R6.0.0 locally. Some things are going very well. I’ve noticed though with color-coded columns that resetting colors back works fine on the client but not on the Web. I create a color-coding column which might be:

Black := 0:0:0;

Blue := 0:0:255;

Green := 0:128:0;

Grey := 128:128:128;

Red := 255:0:0;

Yellow := 255:255:0;

White := 255:255:255;

Pink := 255:193:253;

Apricot := 255:155:133;

Reset := -1:-1:-1;

@If(@DocLength < 100000; White:Apricot; @DocLength < 1000000; White:Blue; @DocLength < 10000000; White:Red; Black:White)

That changes cells afterward fine. I then have a color coding column to reset the colors back to the default colors:

Reset := -1:-1:-1;

Reset:Reset

On the client, I get my regular colors back for the remaining cells on the row (black on white with alternating rows being black on beige). When I view this on the web, the remaining cells end up gone. I look at the code and it’s filled in color=“#FFFFFF” which is white on white so you can’t read them at all. Alternating row colors are gone too.

I don’t see this addressed on the fix list for 6.0.1. Does anyone else have the same problem with this?

Subject: Resetting colors in views on Web

I have the same problem. Did you ever find a solution to this?

Subject: RE: Resetting colors in views on Web

I had the same problem. And I know it says that this isn’t supported on the web. But I found a way to trick it into working. I created two reset columns.

The first is the normal reset you mentioned above

Reset := -1:-1:-1;

Reset : Reset

The second is for the web and it’s just the empty string.

Reset:=“”;

Reset

Don’t use Reset:Reset in the second column. That causes the columns in the Notes Client to turn black. And you must put them in this order or the web columns will disappear.

Hope it helps!

Subject: Resetting colors in views on Web

I had the same problem. And I know it says that this isn’t supported on the web. But I found a way to trick it into working. I created two reset columns.

The first is the normal reset you mentioned above

Reset := -1:-1:-1;

Reset : Reset

The second is for the web and it’s just the empty string.

Reset:=“”;

Reset

Don’t use Reset:Reset in the second column. That causes the columns in the Notes Client to turn black. And you must put them in this order or the web columns will disappear.

Hope it helps!