I use the Select2 plugin (v 3.5.2) with Ajax to dynamically load elements in the list.
I have an issue as between the initialization of the Select2 (where a url property is set in the ajax helper) and the time the ajax call is made, this url might need to be changed.
So I have something like this :
$box.select2({
containerCssClass: "form-control"
minimumInputLength: 0,
allowClear: true,
ajax: {
url: someUrl,
dataType: 'json',
quietMillis: 100,
...
}
I can't figure out how, when, where to change the ajax.url
value before it launches.
The help of Select2 says:
Select2 uses jQuery's
$.ajax
function to execute the remote call by default. An alternativetransport
function can be specified in theajax
settings, or an entirely custom implementation can be built by providing a customquery
function instead of using the ajax helper.
But I can't find any example on how to do it.
Thanks in advance for any help. Much appreciated.
The
ajax.url
option can be specified as a static string or a method returning one in both Select2 3.5.x and 4.0.0.This is useful for changing the base URL, for example when the URL is determined at runtime or is automatically generated in a different method. If you need to change the query parameters, such as the one used for sending the search term, you need to override the
ajax.data
option.The data here will be appended as query parameters by default, and will be sent as the request body if the method type is changed from
GET
(the default) to anything else.Select2 does allow for a different AJAX transport to be used by changing the
ajax.transport
option.In 3.5.2, this must be a
$.ajax
-compatible method, so it must be able to take an object containing thesuccess
andfailure
callbacks.In 4.0.0, this must be a method which takes a
params
object (the same one passed toajax.data
), asuccess
callback, and afailure
callback.