Hello team,
I am getting circular dependancy error for jqxComboBoxDirective and jqxDropDownListDirective. Here is my module js code which is top level application module.
`use strict’;
var module = angular.module(“View”, [‘jqwidgets’, ‘Titles’]);
Below is the code for Titles module
‘use strict’;
var module = angular.module(“Titles”, [])
.config([‘$routeProvider’, function ($routeProvider) {
$routeProvider.
when(‘/titlepartials/import’, { templateUrl: ‘/partials/titlepartials/import.htm’ });
}]);
What is the solution for this?
Thanks,
Freak