Hi,
I have an XPage with a View Control. The view data source has a column, in which “show multiple values as separate entries” is ticked.
My problem is, that the corresponding column of the view control won’t show any values from those documents, which indeed have multiple values in this field/column.
All other documents show up correctly.
Did I miss something or is that a bug?
I hope, I was able to make my problem clear enough… 
regards,
Manuel
Subject: Re: ViewPanel control with multivalue column
Is this column just displaying these values with a separator when you look at the view in the Notes client? Or, are they on completely separate lines (is the multi-value column categorized)?
If it’s the former, you may need to set your View up to use comma separator so the viewPanel will display the data, or use a converter in your viewPanel column to convert to a format that will handle your separator and treat it so the browser can display it. Also it may depend how you are grabbing the data – just bound to a view column, or using a View Entry or the data field?
For help on converters, search this forum or look in the ddwiki.nsf or search the web – there are quite a few posting on them.
Hope that helps a bit.
Subject: No, the latter…
The view control’s column is bound to a view column, which indeed shows an entry per value in a multivalue field.
I found the solution:
I tried to convert the string with the generic Date converter. What worked well with single value entries could not work for multivalue entries, because the value will be a date string enclosed in square brackets [Date Time Timezone]. This cannot be converted to a valid date…
I will have to create my own converter - just like you told me 
Thank you for your time…