File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
docs-aspnet-core/getting-started
docs/controls/scheduling/multiviewcalendar Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -182,12 +182,13 @@ Refer to the article on [Bower package installation](../../kendo-ui/intro/instal
182182
183183 ###### Example
184184
185- jQuery = $ = require("jquery");
185+ import $ from 'jquery';
186+ window.jQuery = $; window.$ = $;
186187
187188 import "@progress/kendo-ui";
188189 import "@progress/kendo-ui/js/kendo.aspnetmvc";
189190 import "@progress/kendo-theme-default/dist/all.css";
190- window.jQuery = window.$ = kendo.jQuery;
191+
191192
1921931 . Open the Command prompt and navigate to the folder of the project.
1931941 . Run the following commands:
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ In some scenarios it might be necessary to display more than two months. This is
3939 function click() {
4040 var numberOfViews = $("#numberOfViews").data().kendoNumericTextBox.value();
4141 if (numberOfViews > 0) {
42- $("#multiViewCalendar").data().kendoMultiViewCalendar.setOptions({ numberOfVies : numberOfViews });
42+ $("#multiViewCalendar").data().kendoMultiViewCalendar.setOptions({ views : numberOfViews });
4343 }
4444 }
4545</script>
You can’t perform that action at this time.
0 commit comments