How to make my kendo dropdown list readonly? -


i have dropdownlist , need make read when user opens page.but needs enabled after click on edit icon.

you can following:

var datasource  =  $("#dropdownelement").data("kendodropdownlist"); 

to make kendo dropdown read :

datasource.readonly(); 

to remove read kendo dropdown :

datasource.enable(true); 

Comments

Popular posts from this blog

php - trouble displaying mysqli database results in correct order -

depending on nth recurrence of job in control M -

sql server - Cannot query correctly (MSSQL - PHP - JSON) -