javascriptjquerykendo-uikendo-listview

How to learn kendo dropdownlist is enabled or disabled in javascript?


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


Solution

  • You can do very simply with

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

    In disabling, KendoUI disabled too the select, so :

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