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:
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?
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.
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.