This question is locked. New answers and comments are not allowed.
I have a page with a search panel (strongly typed .ascx) in which information is entered. Upon clicking search an AJAX form is submitted passing the model for the search panel to my controller. Based on the information a particular partial view containing a Telerik grid is returned with the model of the search panel.
The grid uses AJAX data binding, it calls my controller passing in the model of the search panel. When accessing my model from the controller everything is correct except of List<string> containing the States selected in the search panel. Instead of <modelName>.States returning a list, it returns: System.Collections.Generic.List'1[System.String]
Any Ideas?
I greatly appreciate it