You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: select2.js
+6-1Lines changed: 6 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -346,6 +346,8 @@ the specific language governing permissions and limitations under the Apache Lic
346
346
* @param options.url url for the data
347
347
* @param options.data a function(searchTerm, pageNumber, context) that should return an object containing query string parameters for the above url.
348
348
* @param options.dataType request data type: ajax, jsonp, other datatatypes supported by jQuery's $.ajax function or the transport function if specified
349
+
* @param options.cache set to true to disable jquery's cache-busting url parameters
350
+
* @param options.jsonpCallback set to override the jquery callback function - useful in conjunction with options.cache
349
351
* @param options.traditional a boolean flag that should be true if you wish to use the traditional style of param serialization for the ajax request
350
352
* @param options.quietMillis (optional) milliseconds to wait before making the ajaxRequest, helps debounce the ajax function if invoked too often
351
353
* @param options.results a function(remoteData, pageNumber) that converts data returned form the remote request to the format expected by Select2.
@@ -370,6 +372,8 @@ the specific language governing permissions and limitations under the Apache Lic
370
372
data=options.data,// ajax data function
371
373
url=ajaxUrl,// ajax url string or function
372
374
transport=options.transport||$.ajax,
375
+
cache=options.cache||false,
376
+
jsonpCallback=options.jsonpCallback||undefined,
373
377
type=options.type||'GET',// set type of request (GET or POST)
374
378
params={};
375
379
@@ -391,7 +395,8 @@ the specific language governing permissions and limitations under the Apache Lic
0 commit comments