1
0
mirror of synced 2024-11-23 05:26:10 +03:00

Merge pull request #1370 from jeffturcotte/master

Ability to get dropdown element
This commit is contained in:
Igor Vaynberg 2013-05-31 11:58:33 -07:00
commit fcd7da798b

View File

@ -2953,7 +2953,7 @@ the specific language governing permissions and limitations under the Apache Lic
opts, opts,
select2, select2,
value, multiple, value, multiple,
allowedMethods = ["val", "destroy", "opened", "open", "close", "focus", "isFocused", "container", "onSortStart", "onSortEnd", "enable", "readonly", "positionDropdown", "data"], allowedMethods = ["val", "destroy", "opened", "open", "close", "focus", "isFocused", "container", "dropdown", "onSortStart", "onSortEnd", "enable", "readonly", "positionDropdown", "data"],
valueMethods = ["val", "opened", "isFocused", "container", "data"]; valueMethods = ["val", "opened", "isFocused", "container", "data"];
this.each(function () { this.each(function () {
@ -2980,7 +2980,9 @@ the specific language governing permissions and limitations under the Apache Lic
select2 = $(this).data("select2"); select2 = $(this).data("select2");
if (select2 === undefined) return; if (select2 === undefined) return;
if (args[0] === "container") { if (args[0] === "container") {
value=select2.container; value = select2.container;
} else if (args[0] === "dropdown") {
value = select2.dropdown;
} else { } else {
value = select2[args[0]].apply(select2, args.slice(1)); value = select2[args[0]].apply(select2, args.slice(1));
} }