Thanks for using Syncfusion Products.
We have analyzed the reported issues with our sample, to solve the problem for loading tools in Syncfusion toolbox, please open your Syncfusion dashboard-> Utilities-> Toolbox Configuration, then run Toolbox Installer. And following issue “The type or namespace name 'FileExplorer' does not exist in the namespace 'Syncfusion.JavaScript.Models' (are you missing an assembly reference?)“ may be occurs due to wrong namespace reference in “aspx.designer.cs” file as “protected global::Syncfusion.JavaScript.Models.FileExplorer”. To solve this problem please specify the namespace as shown in below code example.
Code example[C#]:
protected global::Syncfusion.JavaScript.Web.FileExplorer |
We have prepared a sample based on this and you can find the sample under the following location:
Sample: http://www.syncfusion.com/downloads/support/forum/120302/ze/WebApplication41692283669
Please let us know if this helps. If still you face any difficulties, kindly get back to us with more information and we will be happy to help you.
Regards,
Balamurugan
Hi Manolo,
We analyzed the reported issue with your sample. This error is thrown as you are trying to call a method of another domain by enabling “settings.AutoRedirectMode” as “RedirectMode.Permanent”. This is restricted from browsers for security purpose. To resolve this problem, please specify the “settings.AutoRedirectMode” as “RedirectMode.Off” in your “RouteConfig.cs” file. Please refer to the below code example.
Code example[C#]:
settings.AutoRedirectMode = RedirectMode.Off; |
We have prepared a sample based on this and you can find the sample under the following location:
Sample: http://www.syncfusion.com/downloads/support/forum/120302/ze/GridExport-1142717404
Please let us know if this helps.
Regards,
Balamurugan