I have a SharePoint list that has a Country column, a City column and a Manager column. The Manager column can have multiple users in it.
I have a drop down for selecting with country to use and I would like to have a combobox listing al of the Manages for the selected country. This could end up being multiple records within the SharePoint List and each of those records could have multiple Managers.
I guess that I need to build up a collection of all the Managers within the list for the selected country.
So my SharePoint list is something like:
Country City Manager
=======================
USA Anchorage Fred
USA Irvine Bob, John
USA New Orleans Albert, Kennie, Ali
UK London Joe, Christine
If I select USA, I want to build a collection of users that should have Fred, Bob, John, Albert, Kennie and Ali in it.
If I select UK, the collection would have Joe and Christine in it.
I have managed this kind of thing before when the Manager column could not be multiple users, but in this case the collection always has a column with [Table] in each row.
I have manage to have a gallery to show the correct data and thought I could possibly use the gallery as the datasource of the combobox, but don't seem to be able to do this either.
I'm sure I'm missing something really simple, but can't see it.
Could someone help or point me in the right direction please?
Thanks,
Pete