All Answers

0 votes

Hi William,

we’re preparing a sample for you and will update you shortly.

Best regards
Frank

0 votes
In reply to: Wisej 3 plus VS2022

Yes, you can run multiple versions of Wisej framework on the same server.  We currently have this same scenario at my company.

 

Thanks,

Tim

0 votes

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).

  • Luca answered Jan 11, 2024 - 11:51 pm
0 votes
In reply to: Wisej 3 plus VS2022

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

0 votes
In reply to: Wisej 3 plus VS2022

Hi Wim,

With Wisej.NET 3, you can use Visual Studio 2019 or 2022.

Best,
Alaa

//

1 vote
In reply to: Web API in Wisej app

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

0 votes

The designer doesn’t support only .NET Core. See roadmap. You need to target net48 first, as the project was created by the template.

  • Luca answered Jan 10, 2024 - 4:53 pm
0 votes

See roadmap page. We are always going to support .NET Framework for our customers.

  • Luca answered Jan 10, 2024 - 3:38 pm
0 votes

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

//

  • Alaa (ITG) answered Jan 9, 2024 - 11:07 pm
  • last active Jan 10, 2024 - 10:05 am
0 votes

Hello Frank,

I do not know what has happened but I did not receive your email.

Regards

Phil Sargeant

0 votes

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

0 votes

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

0 votes

Hi Edmond,

  1. Do I have to create an actual mobile app that just goes to the site and load the WiseJ app pages ? Or can the app link be added to the device home screen as in a PWA ?

You can add shortcuts to a given URL on all platforms: iOS, Windows, Android, and macOS. You don’t need to deploy it as an actual mobile app through the app store. You can also use the Wisej.NET PWA Project Template in Visual Studio if you want to deploy as a PWA. Either way works.

2. I don’t really want to deal with publishing actual apps to the different app stores.

You can use the shortcuts:

https://www.macrumors.com/how-to/add-a-web-link-to-home-screen-iphone-ipad/

https://lifehacker.com/how-to-add-a-website-shortcut-to-your-android-home-scre-1849125415

3. How can I remember who this user is so they don’t have to log in all the time after the initial order is placed and we know who they are. Can some kind of token be stored locally on their device and we can read it from WiseJ ?

You can use Application.Browser.LocalStorage, which is persisted across sessions:

https://docs.wisej.com/api/wisej.core/general/wisej.core.localstorage

https://developer.mozilla.org/en-US/docs/Web/API/Window/localStorage

 

HTH,

Levie

  • Levie (ITG) answered Jan 8, 2024 - 6:24 pm
  • last active Jan 8, 2024 - 6:25 pm
0 votes

Hi Eddy,

Would you be able to wrap up this issue into a small test project?

Best,
Alaa

//

0 votes
In reply to: Wisej.NET Desktop

Wisej.NET Desktop is an executable that can run wisej applications locally. It’s replaced by Wisej.NET Hybrid.

You are referring to the Desktop Project Template, which is unchanged and unrelated.

HTH

  • Luca answered Jan 8, 2024 - 11:50 am
0 votes

.NET 48 is widely used by a large number of projects in production. We don’t see any reason not to keep supporting it for the foreseeable future. There are many systems that cannot work on NET core due to a lack of a proper implementation.

Wisej.NET 4 will include a designer for NET Core.

This issue doesn’t appear to identify any bug. Multitargeting and editing csproj js is normal.

 

  • Luca answered Jan 5, 2024 - 1:10 pm
0 votes
In reply to: Application Error

Hello,

This issue was fixed in version 3.2 and above.

Best,
Alaa

//

0 votes

To answer your second question, the ValidatingType is supported for the MaskedTextBox control and not for the DataGridViewMaskedTextBoxColumn. See ValidatingType in the api docs for the functionality. A phone doesn’t have a validating type, there is column next to it that should say (None).

  • Luca answered Jan 3, 2024 - 5:35 pm
0 votes

We are not Visual WebGui. If you have a sample that shows a specific issue please attach it.

  • Luca answered Jan 3, 2024 - 5:27 pm
0 votes
In reply to: Stress Test Tool

Hi Bill,

setting up jMeter for your specific application is beyond Wisej.NET support.
You can get an individual quote for our Professional Services from SalesATwisej.com

Best regards
Frank

Showing 761 - 780 of 11k results