I want to learn kendo dropdownlist is enabled or disabled for using in a if function.
For example if kendo dropdownlist is enabled my return value true, otherwise false
How can I do that?
Thanks for all answers
I want to learn kendo dropdownlist is enabled or disabled for using in a if function.
For example if kendo dropdownlist is enabled my return value true, otherwise false
How can I do that?
Thanks for all answers
BENARD Patrick's answer is correct.
Below also worked for me(alternative solution):
<script>
$("#selectionKendoList").kendoDropDownList({
enable: false
});
if($("#selectionKendoList").parent().find(".k-dropdown-wrap").hasClass("k-state-disabled")) {
alert("Disabled");
}
else {
alert("Enabled");
}
</script>
You can do very simply with
In disabling, KendoUI disabled too the select, so :