{select name="PreviousCategory" multiple size="4"}
{domino:view dbname="{%=path%}" viewname="DBLookup01" debug="true" onfailure="inline" toponly="true"}
{domino:viewloop}
{domino:viewitem id="CategoryName" col="1" format="RAW"/}
{option}{%= CategoryName.toString() %}
{/option}
{/domino:viewloop}
{/domino:view}
{/select}
Unfortunately, selected options were not saved back to the Notes document. So, I rewrote the above using the
{domino:select name="PreviousCategory" multivalue="true" size="4"}
{domino:view dbname="{%=path%}" viewname="DBLookup01" debug="true" onfailure="inline" toponly="true"}
{domino:viewloop}
{domino:viewitem id="CategoryName" col="1" format="RAW"/}
{domino:option value="{%= CategoryName.toString() %}" display="{%= CategoryName.toString() %}"}
{/domino:option}
{/domino:viewloop}
{/domino:view}
{/domino:select}
and this worked prefectly. The only strange thing was that Su | Mo | Tu | We | Th | Fr | Sa |
|---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | |||