16 lines
538 B
JavaScript
16 lines
538 B
JavaScript
var KretaDropDownListHelper = (function () {
|
|
var kretaDropDownListHelper = function () {};
|
|
|
|
kretaDropDownListHelper.getKendoDropDownListData = function (dropDownListId) {
|
|
var dropDownList = $('#' + dropDownListId);
|
|
var dropDownListData = dropDownList.data('kendoDropDownList');
|
|
return dropDownListData;
|
|
};
|
|
|
|
kretaDropDownListHelper.refreshDropDownList = function (inputName) {
|
|
var widget = $('#' + inputName).data('kendoDropDownList');
|
|
widget.dataSource.read();
|
|
};
|
|
|
|
return kretaDropDownListHelper;
|
|
})();
|