You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: using-kendo-with-requirejs.md
+27-6Lines changed: 27 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -7,18 +7,39 @@ position: 210
7
7
8
8
The production (minified) builds of Kendo UI are designed to work with [RequireJS](http://requirejs.org/). Therefore if you need to use only a few components instead of loading the full `kendo.all.js`, you may now declare only the components you need and RequireJS will take care to load any needed dependencies.
9
9
10
-
For example, supposing you need to use a grid and a menu, your code could look like this (replace *VERSION* with the Kendo UI version that you want to use):
10
+
For example, supposing you need to use a grid and a dropdownlist, your code could look like this:
11
+
12
+
<div id="grid"></div>
13
+
<br>
14
+
<select id="ddl"></select>
15
+
16
+
<!-- Load the jQuery and RequireJS files from CDN -->
0 commit comments