diff --git a/docs/_includes/nav/options.html b/docs/_includes/nav/options.html index 4c1be4f3..783eafb7 100644 --- a/docs/_includes/nav/options.html +++ b/docs/_includes/nav/options.html @@ -20,6 +20,9 @@
+ There are few ways to programmatically access the selection data. Calling select2('data')
will return the JavaScript array of an objects representing the current selection. Each object will have properties/values which was in the source data objects passed through processResults
and templateResult
functions (as in Loading data from an array and Connecting to a remote data source).
+
+ As Select2 uses the HTML <SELECT>
element to store the selection result, the selection data are represented by <OPTION>
elements and can be accessed in the plain jQuery/DOM manner. The resulting elements will have properties/values from the source data objects, stored by the means of jQuery data()
method and accessible by key 'data'
:
+
+ Another technique is not to rely on jQuery's data()
method but to extend the <OPTION>
elements representing selection with the HTML data-* attributes containing arbitrary data from the source data objects:
+