skip to Main Content

how to return kendoDropDownList in jQuery

I had a code like below let ctrlClassificationLevel = $('#ctrlClassificationLevel').kendoDropDownList(); ctrlClassificationLevel.kendoDropDownList({ dataTextField: "Name", dataValueField: "Id", dataSource: data,//data coming from db //optionLabel: "User Type", filter: "contains", suggest: true, }); now I am trying to create a common code to for kendo…

VIEW QUESTION

Why isn't this code working? It doesn't seem to be selecting the HTML elements properly – Jquery

` <!--jQuery--><script src="//code.jquery.com/jquery-1.12.4.js"></script> <!--jQuery UI--><script src="//code.jquery.com/ui/1.12.1/jquery-ui.js"></script> <!--jQuery UI CSS--><link rel="stylesheet" href="//code.jquery.com/ui/1.13.2/themes/base/jquery-ui.css"> <script> function Alert(a){ $("#p")[0].innerHTML = a; return new Promise(resolve => { $("#main").dialog({ autoOpen: false, height: "auto", width: 400, modal: true, resizable: false, buttons: { "Ok": () => { $(this).dialog("close");…

VIEW QUESTION
Back To Top
Search