i have a view with 10 columns.all 10 columns are multiple-value fields.
in the column properties, for each column, i have selected “show multiple values as separate entries”, and i have also specified “new line” as the multi-value separator.
in the view properties, 3rd tab, “Rows” section, i have selected a height of 2, and i selected “shrink rows to content”
i want to be able to update all columns from the view.
so, i have checked off “editable column” in the column properties.
in the InViewEdit event for the view, i pasted in a chunk of code that i copied straight from the online help, from the examples of InViewEdit.
when i look at the view in the Notes Client, i can update a column, but when i do , i lose all of the other multiple values for that field.
in other words, if my field “num” has 3 values {1;2;3}, the view will display 3 lines, the values for the column “num” being 1, 2, 3.
i want to be able to update the value in row 3 from 3 to 4, so my field should have multiple values {1;2;4}.
but after i update that column in row 3, all 3 rows display the value “4” in that column, and when i look at the contents of the field it just shows {4}.
why can’t i update just one of the multiple values from the view?