Hi .
I'm partially migrating a website created with Syncfusion EJ1 to EJ2.
https://www.syncfusion.com/kb/9884/how-to-use-ej1-and-ej2-controls-together
Refer to the above address and put js file as below to proceed.
------------------------------------------- cshtml Contents ----- -----------------------------------
...
<link rel='nofollow' href = "~ / Contents / SyncFusion / ej.web.all.min.css" rel = "stylesheet" />
@ * syncfusion EJ2 BaseForm CSS * @
<link rel='nofollow' href = "/ Contents / SyncFusionEJ2 / base / bootstrap4.min.css" rel = "stylesheet" />
<link rel='nofollow' href = "/ Contents / SyncFusionEJ2 / inputs / bootstrap4.min.css" rel = "stylesheet" />
<link rel='nofollow' href = "/ Contents / SyncFusionEJ2 / popups / bootstrap4.min.css" rel = "stylesheet" />
<link rel='nofollow' href = "/ Contents / SyncFusionEJ2 / lists / bootstrap4.min.css" rel = "stylesheet" />
<link rel='nofollow' href = "/ Contents / SyncFusionEJ2 / navigations / bootstrap4.min.css" rel = "stylesheet" />
...
<script src = "@ strCDN_URL / Scripts / ej.web.all.min.js"> </ script>
@ * syncfusion EJ2 BaseForm Javascript * @
<script src = "/ Scripts / SyncFusionEJ2 / ej2-base.min.js" type = "text / javascript"> </ script>
<script src = "/ Scripts / SyncFusionEJ2 / ej2-data.min.js" type = "text / javascript"> </ script>
<script src = "/ Scripts / SyncFusionEJ2 / ej2-lists.min.js" type = "text / javascript"> </ script>
<script src = "/ Scripts / SyncFusionEJ2 / ej2-inputs.min.js" type = "text / javascript"> </ script>
<script src = "/ Scripts / SyncFusionEJ2 / ej2-popups.min.js" type = "text / javascript"> </ script>
<script src = "/ Scripts / SyncFusionEJ2 / ej2-navigations.min.js" type = "text / javascript"> </ script>
@ * syncfusion EJ & EJ2 Extending scripts * @
<script> $. extend (ej, Syncfusion) </ script>
...
-------------------------------------------------- ------------------------------------------------
While calling the ejChart control that was being used by Syncfusion EJ1, the following error occurs in Chrome Developer Tools.
----------------------------------------- Chrome Developer Tools ------ ---------------------------
Uncaught TypeError: Cannot read property 'processOperator' of undefined
at new t.Predicate (ej.web.all.min.js: 10)
at t.Query.where (ej.web.all.min.js: 10)
at ej.web.all.min.js: 10
at Array.filter (<anonymous>)
at Object._axisFilter (ej.web.all.min.js: 10)
at Object._arrangeAxis (ej.web.all.min.js: 10)
at Object.draw (ej.web.all.min.js: 10)
at Object.bindTo (ej.web.all.min.js: 10)
at Object._createChart (ej.web.all.min.js: 10)
at Object._renderSfChart (ej.web.all.min.js: 10)
...
-------------------------------------------------- ------------------------------------------------
Please let me know if there is a way to solve the above problem.
Thank you.