Hi
Currently, if I want to get the selected values with a separate AJAX request, I have to make a standard AJAX call in the MultiSelect's DataBound event handler. It would be great, if this functionality was built into the control itself like this:
.DataSource(source =>
{
source.Read(read => {read.Action("GetItemSets", "List"); });
source.Values(values => { values.Action("GetSelectedValues", "List" ) }
})
Thank you
Earl