Click here to Skip to main content
Sign Up to vote bad
good
See more: JSONPMVC4
I am trying to load options for select2 from a list.
Here is what I have done so far:
View
----
<input type="hidden" id="myInput" multiple="multiple" />
 
Js file
-------
$("#myInput").select2({
  placeholder: "select from the following",
  ajax:
  {
     url:http://debug:10482/myData/GetList",
     dataType: "jsonp",
     data: function (term, page) {
       return {
        q: term,
        page_limit: 10,
        apikey: "ju6z9mjyajq2djue3gbvv26t"
       };
     },
     results: function (data, page) {
       return { results: data}
     }
  }
});
 
myData.cs
---------
public jsonResult GetList(string q)
{
   List<string> myList = new List<string>() {"one, "two", "three"};
   return Json(myList);
}
 
I can see in debug it enters the "GetList" function but can't see any
results found in the select2 input.
Posted 22 Dec '12 - 0:58


This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

  Print Answers RSS
Your Filters
Interested
Ignored
     
0 Sergey Alexandrovich Kryukov 425
1 OriginalGriff 315
2 Slacker007 240
3 Maciej Los 240
4 Aarti Meswania 210
0 Sergey Alexandrovich Kryukov 8,953
1 OriginalGriff 7,134
2 CPallini 3,758
3 Rohan Leuva 3,036
4 Maciej Los 2,488


Advertise | Privacy | Mobile
Web01 | 2.6.130516.1 | Last Updated 22 Dec 2012
Copyright © CodeProject, 1999-2013
All Rights Reserved. Terms of Use
Layout: fixed | fluid