Hello Tim,
Thanks for the sample.
First there appeared an error in MenuBar.cs
public override bool IsSupported()
{
return Device.Info.System.Idiom == “Desktop”;
I changed it to
return Device.Info.System.Idiom.ToString() == “Desktop”;
}
But now when I start the HypridApp in debug on Android-Simulation (Pixel) i get the error:
Method not found: void System.Drawing.Private FontCollection……….
Do you have any idea?
Thanks
Rupert
Hi Rupert,
You can find additional documentation for Wisej.NET Hybrid here: docs.wisej.com/hybrid
Best,
Levie
Download this sample and you should be able to use the example to get it working.
https://github.com/iceteagroup/wisej-hybrid-examples
Thanks,
Tim
Hi Daniel,
thanks for your interest in our Chat Control extension.
Source code in GitHub is always updated for every Wisej.NET release, so now you will see the 3.5.3 code base,
while Wisej.NET 3.5.4 is currently in QA (there are also 3.5.4 preview builds on nuget.org during that process).
We are working on our documentation to cover the new extensions (including samples) and it will be available shortly.
I’ll update this forum thread then.
For the specific error on the Chat Control that you were facing it would be helpful to get a small test case and an information about the Wisej version you have been using.
Best regards
Frank
Nuget and github are not always guarantees to be in sync. The chat control is a free cool extension provides with source code. If your specific issue is the compilation error we will look into it. If you attach a simple test case if would help.
General ranting doesn’t help especially on a free support forum.
congratulations, you found a bug 🙂
Please change the NavBarGroup property in BaseMainForm.cs to the following and it should work:
protected string NavBarGroup
{
get => _NavBarGroup;
set
{
_NavBarGroup = value;
_NavBarGroupItem = null;
}
}
protected string _NavBarGroup;
Hello William,
Attached is the sample on how to use the MarkerCluster plugin for GMaps.
We’re going to enhance our Extension to provide a cleaner approach on how to deal with it.
Take a look at the JavaScript/MarkerCluster.js file, to quickly see how everything is wired.
Program.cs file to see how JS Packages are loaded on an application level.
You’ll need to use your own API key for the sample to work correctly.
Best,
Alaa
//
Hi Ali,
For my education, why would you want to create a Web Api in the Wisej application? Why not create a separate application for that?
Best,
Alex
Hi William,
we’re preparing a sample for you and will update you shortly.
Best regards
Frank
Yes, you can run multiple versions of Wisej framework on the same server. We currently have this same scenario at my company.
Thanks,
Tim
That’s correct.
Hide() and Show() are related to the Visible property that for TabPages it’s related to being the active (selected tab). The Hidden property hides the TabPage from the TabView while deselecting a TabPage sets the Visible property to false because the child controls inherit the Visible value (it’s a so-called Ambient Property).
Hi Alaa, sorry that is not what I meant. The question is: Can we run Wisej 3 with VS2022 on the same machine together with Wisej 2.2 and VS2015 ?
Regards,
Wim
Hi Wim,
With Wisej.NET 3, you can use Visual Studio 2019 or 2022.
Best,
Alaa
//
Hi Ali,
If you’re using .NET Core you can use Simple APIs. Add this to Startup.cs:
app.MapGet("/data", () =>
{
var random = new Random();
var data = new List<dynamic>();
for (var i = 0; i < 10; i++)
{
data.Add(new { index = i, value = random.Next(10000) });
}
return JSON.Stringify(data);
});
If you’re using .NET Framework you can register an IHttpModule, see this link for a demo that shows an implementation:
https://github.com/iceteagroup/wisej-extensions/tree/2.2/Wisej.Web.Ext.OfficeViewer
Best,
Levie
The designer doesn’t support only .NET Core. See roadmap. You need to target net48 first, as the project was created by the template.
See roadmap page. We are always going to support .NET Framework for our customers.
Hi Herman,
Thank you for your interest in Wisej.NET and its premium extensions.
You can change the culture of all the EJ2 controls using the following call:
ej2Base.Culture = new CultureInfo("de-DE");
We have a fully featured demo application called the DemoBroweser, you can check it out here: https://demo.wisej.net/Syncfusion2/#DocumentEditor
The DemoBrowser is open source, meaning you can also check out the code behind it!
For the DocumentEditor, please visit: https://github.com/iceteagroup/wisej-demobrowser/blob/main/Wisej.DemoBrowser.Premium/Wisej.Web.Ext.Syncfusion2.Demo/Component/DocumentEditor.cs
You can always clone the repo and run the demo application yourself!
Best regards,
Alaa
//
Hello Frank,
I do not know what has happened but I did not receive your email.
Regards
Phil Sargeant
Hi Vincent,
please contact us at supportATwisej.com and send over the detailed information like license key.
We will follow up there.
Best regards
Frank
Hi Phillip,
I’ve just sent you a mail regarding this topic.
Please don’t any key in this public support forum.
Best regards
Frank
