I have setup a project but the control is not displaying.
1) I have added the NuGet Syncfusion.EJ2.AspNet.Core
2) Registered the Lincense in Startup.cs under Configure...
using this. Syncfusion.Licensing.SyncfusionLicenseProvider.RegisterLicense("xyz")
3) I have added this to my _ViewImports File @addTagHelper *, Syncfusion.EJ2
4) I have added this to my _Layout.cshtml head
<!-- Syncfusion Essential JS 2 Styles -->
<link rel="stylesheet" rel='nofollow' href="https://cdn.syncfusion.com/ej2/material.css" />
<!-- Syncfusion Essential JS 2 Scripts -->
<script src="https://cdn.syncfusion.com/ej2/dist/ej2.min.js"></script>
5) I have added this to the body:
<ejs-scripts></ejs-scripts>
And this to my View
<div>
<ejs-calendar id="calendar"></ejs-calendar>
</div>
And the control is not displaying?
How can I debug this.
I do believe the License is working,
bool valid = Syncfusion.Licensing.SyncfusionLicenseProvider.ValidateLicense(Syncfusion.Licensing.Platform.ASPNETCore);
Console.WriteLine("Syncfusion valid: " + valid);
This results in true.