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

Kendo UI for jquery drawer side not forwarding to href

<html> <head> <title></title> <link rel="stylesheet" href="styles/kendo.common.min.css" /> <link rel="stylesheet" href="styles/kendo.default.min.css" /> <link rel="stylesheet" href="styles/kendo.default.mobile.min.css" /> <script src="js/jquery.min.js"></script> <script src="js/kendo.all.min.js"></script> </head> <body> <div id="example"> <div class="demo-section wide"> <div id="toolbar"></div> <div id="drawer"> <div id="drawer-content"> <div id="Inbox"> <a href="google.com"></a> </div> <div id="Notifications" class="hidden">…

VIEW QUESTION

Twitter bootstrap – Object doesn't support property or method 'jSignature

I have included jquery.1.9.1 in my Layout page . I am using kendo with twitter bootstrap so I followed script reference order like below . <head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width" /> <title>@ViewBag.Title</title> @Styles.Render("~/Content/css") @Scripts.Render("~/bundles/modernizr") <link href="~/Content/styles/kendo.bootstrap.min.css" rel="stylesheet" />…

VIEW QUESTION
Back To Top
Search