Hi,
I get an error when I try to Export a RadDiagram.
Error in HTMLExportHelper Class:
Var stream is allways null. How should string path looks like? for example "public const string JSFilePath = @"Common/ExportToHTML/JavaScript.js";" ist
wrong. The JavaScript.js file is Applicationpath + Common + ExportToHTML Folder.
Thanks
Best Regards
Rene
I get an error when I try to Export a RadDiagram.
Error in HTMLExportHelper Class:
private static string LoadStringFromFile(string path)
{
string javaScript = string.Empty;
using (var stream = ExtensionUtilities.GetStream(path))
{
if (stream != null)
{
using (var reader = new StreamReader(stream))
{
javaScript = reader.ReadToEnd();
}
}
}
return javaScript;
}
Var stream is allways null. How should string path looks like? for example "public const string JSFilePath = @"Common/ExportToHTML/JavaScript.js";" ist
wrong. The JavaScript.js file is Applicationpath + Common + ExportToHTML Folder.
Thanks
Best Regards
Rene