Merge pull request #1370 from jeffturcotte/master
Ability to get dropdown element
This commit is contained in:
commit
fcd7da798b
@ -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 () {
|
||||||
@ -2981,6 +2981,8 @@ the specific language governing permissions and limitations under the Apache Lic
|
|||||||
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));
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user