Domanda

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

È stato utile?

Soluzione

You can do very simply with

$('#selectId').prop('disabled');

In disabling, KendoUI disabled too the select, so :

var state = $('#selectId').prop('disabled');

Altri suggerimenti

Just do this:

$("#your_dropdown_id").attr("aria-disabled");

If it is disabled this returns true else it returns false.

This should work:

$('#your_dropdown_id').data("kendoDropDownList").options.enabled;
Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top