Programmatically set the value of a Select2 ajax
Note this was tested with version 4+ I was finally able to make progress after finding this discussion: https://groups.google.com/forum/#!topic/select2/TOh3T0yqYr4 The last comment notes a method that I was able to use successfully. Example: $(“#selectelement”).select2(“trigger”, “select”, { data: { id: “5” } }); This seems to be enough information for it to match the ajax data, … Read more