Hello- Not much info out there yet but, I am trying to display multiple values in a Details List field.
First a little background into my project:
The data for the Details List is located in three SharePoint lists.
List 1: Accounts
List 2: Products
List 3: Bridge Table called AccountProducts (Columns include ID, Title, AccountID plus the default list columns)
Accounts can have more than one Product assigned to them.
The Details List is attached to a Collection called colAccounts. I added a Products column to colAccounts that filters the AccountProducts list by Account ID and returns only the Title column. This creates a Table Value in the Products column of colAccounts containing the names of the products associated with an Account.
Here are my column settings for the Products column...
{
ColName: "Products",
ColDisplayName: "Products",
ColWidth: 250,
ColResizable: true,
ColFirstMultiValueBold: true,
ColMultiValueDelimiter: ", "
}
All other columns of the colAccounts display as expected in the Details List. I also get the requisite number of delimiting commas appearing in the Product column. Just no data.
Any ideas? I feel like I'm sooo close...