Jul 25, 2012, 10:46 PM
ValuesToJsonArray from MultiCombo issue
I just upgraded from 1.3 to 2.0 and I'm able to get through most of the issues via your change notes and other threads but I can't find anything about this one. I am grabbing the values from a MultiCombo and putting them into a string before storing them. What I previously did was this:
string mentorAreas = mcMentorAreas.SelectedItems.ValuesToJsonArray().To String();
But now I am getting the following error:
Error 324 'Ext.Net.ListItemCollection' does not contain a definition for 'ValuesToJsonArray' and no extension method 'ValuesToJsonArray' accepting a first argument of type 'Ext.Net.ListItemCollection' could be found (are you missing a using directive or an assembly reference?)
Is there a new way to handle this? How can I grab all the values from a MultiCombo and store them in a string?
string mentorAreas = mcMentorAreas.SelectedItems.ValuesToJsonArray().To String();
But now I am getting the following error:
Error 324 'Ext.Net.ListItemCollection' does not contain a definition for 'ValuesToJsonArray' and no extension method 'ValuesToJsonArray' accepting a first argument of type 'Ext.Net.ListItemCollection' could be found (are you missing a using directive or an assembly reference?)
Is there a new way to handle this? How can I grab all the values from a MultiCombo and store them in a string?