init
This commit is contained in:
12
KretaWeb/Scripts/KendoHelper/KretaRadioButtonListHelper.js
Normal file
12
KretaWeb/Scripts/KendoHelper/KretaRadioButtonListHelper.js
Normal file
@@ -0,0 +1,12 @@
|
||||
var KretaRadioButtonListHelper = (function () {
|
||||
var kretaRadioButtonListHelper = function () {};
|
||||
|
||||
kretaRadioButtonListHelper.getSelectedValue = function (radioButtonListId) {
|
||||
var result = $(
|
||||
"input:radio[name='" + radioButtonListId + "']:checked"
|
||||
).val();
|
||||
return result;
|
||||
};
|
||||
|
||||
return kretaRadioButtonListHelper;
|
||||
})();
|
||||
Reference in New Issue
Block a user