I have figured out a way to have checkboxes come out neatly in columns on the
web using the new @For formula and passthru HTML on a computed text field.
1;newlist := newlist + newrow + cbx + xlist + “'>”+ xlist + "
]";newlist := newlist + “[” + cbx + xlist + “'>” + xlist
- " ]")));
newlist
========================
The above works great if you are only dealing with one form. However, I need
to go to a second form that includes the Plant field. Using the method above,
my Plant values disappear. So in place of the computed text field, I created a
Notes Checkbox field and selected Use Formula for Choices and select 1 column.
This solves the problem of losing the selected values on the subsequent form,
however, now I am getting an additional checkbox entry at the front of the list
with no value. This is from the default tag that domino is generating for the
checkbox field.
If I select the first option that domino is generating, then the Plant field
contains the HTML code, not the values of the fields. I think somehow the
checkbox fields are getting nested.
My question is, does anyone know a way to stop domino from generating that tag
or to override it?
I have tried using the computed text method and putting a notes field of the
same name Plant on the form and hidding that, but the values that get checked
still do not move to the subsequent form.
Thanks