Hi Team
I would like to share my View.cshtml here, i have tried to use examples from the samples. I dont have any errors, but the issue is my View is not showing FileManager.
//FileOperation.cshtml
@{
ViewBag.Title = "Year-Events";
}
@using Syncfusion.EJ2.FileManager;
<link rel="stylesheet" rel='nofollow' href="https://cdn.syncfusion.com/ej2/material.css" />
<script src="https://cdn.polyfill.io/v2/polyfill.min.js"></script>
<!-- Syncfusion Essential JS 2 Scripts -->
<script src="https://cdn.syncfusion.com/ej2/dist/ej2.min.js"></script>
<link rel="stylesheet" rel='nofollow' href="https://cdnjs.cloudflare.com/ajax/libs/jquery-ajax-unobtrusive/3.2.6/jquery.unobtrusive-ajax.js"/>
<div class="form-group row">
<div class="control-section">
@Html.EJS().FileManager("file").AjaxSettings(new Syncfusion.EJ2.FileManager.FileManagerAjaxSettings
{
Url = "/Home/FileOperations",
GetImageUrl = "/Home/GetImage",
UploadUrl = "/Home/Upload",
DownloadUrl = "/Home/Download"
}).Render()
</div>
</div>
//_Layout.cshtml
<link rel="stylesheet" rel='nofollow' href="https://cdn.syncfusion.com/ej2/material.css" />
<script src="https://cdn.polyfill.io/v2/polyfill.min.js"></script>
<!-- Syncfusion Essential JS 2 Scripts -->
<script src="https://cdn.syncfusion.com/ej2/dist/ej2.min.js"></script>
//Controller has those methods exactly same from the sample
What could be an issue here and no configuration on web.config. Please help mates im stuck here