Integrating jQWidgets library with Kendo UI -
Integrating jQWidgets library with Kendo UI -
i’m working angular spa template (hottowel.angular.breeze) in asp.net mvc 3 framework. noticed include jqwidgets script references index.html file, getting js errors immediately. possible jqwidgets cannot loaded side-by-side 3rd party ui library kendo ui ? i.e. reference “scripts/jqwidgets/jqxcore.js”
below, page returns js error.
here’s script section @ bottom of index.html :
<!-- vendor scripts --> <script src="scripts/jquery-2.1.1.js"></script> <script src="scripts/angular.js"></script> <script src="scripts/kendo.all.min.js"></script> <!-- angular-kendo integration --> <script src="scripts/angular-kendo.js"></script> <script src="scripts/angular-animate.js"></script> <script src="scripts/angular-route.js"></script> <script src="scripts/angular-sanitize.js"></script> <script src="scripts/bootstrap.js"></script> <script src="scripts/toastr.js"></script> <script src="scripts/moment.js"></script> <script src="scripts/ui-bootstrap-tpls-0.10.0.js"></script> <script src="scripts/spin.js"></script> <!-- jqwidgets --> <script src="scripts/jqwidgets/jqxcore.js"></script> <script src="scripts/jqwidgets/jqx-all.js"></script> <!-- bootstrapping --> <script src="app/app.js"></script> <script src="app/config.js"></script> <script src="app/config.exceptionhandler.js"></script> <script src="app/config.route.js"></script> <!-- mutual modules --> <script src="app/common/common.js"></script> <script src="app/common/logger.js"></script> <script src="app/common/spinner.js"></script> <!-- common.bootstrap modules --> <script src="app/common/bootstrap/bootstrap.dialog.js"></script> <!-- app --> <script src="app/admin/admin.js"></script> <script src="app/dashboard/dashboard.js"></script> <script src="app/layout/shell.js"></script> <script src="app/layout/sidebar.js"></script> <!-- app services --> <script src="app/services/datacontext.js"></script> <script src="app/services/directives.js"></script>
kendo-ui jqwidget
Comments
Post a Comment