All Answers

0 votes
In reply to: 3.5 autoToolTip error

Hi Frank! That was fast !

Please check the screenshots for versions. The project with 3.5.* is the new one I just added, but it says installed 3.5.4. The extension is also 3.5.4. The Wisej-MobileIntegration is at version 3.2.8, but I don’t see a new version for that (actually I don’t know where that was used, it was there in my old solution).

Alex

0 votes
In reply to: 3.5 autoToolTip error

Hi Alex,

please make sure to update your Wisej.NET nuget package and the VSIX to the latest version (3.5.4).

Best regards
Frank

0 votes

With the last version 3.5.4. it works on my dev environment.

  • mgmst answered Feb 4, 2024 - 2:30 pm
0 votes

You can use Visual Studio on a Mac to create Wisej applications.

0 votes
There is no cross site vulnerability in Wisej.NET, nor any other vulnerability to date. Any html sanitation is part of your application. With Wisej being able to run javascript (in a broken img, which is the typical pentest trick, is harmless). In any case, if your app displays html it’s the app’s responsibility.
The other things you mentioned are not vulnerabilities and are not a Wisej specific features. They are standard asp.net.
You can refer to our security page for more information. If you require additional services pls refer to our services page.
  • Luca answered Feb 2, 2024 - 5:28 pm
0 votes

Hi Antonio,

Please contact us at support[at]wisej.com .

Best,
Alaa

//

0 votes

Hi Kizaemon,

Can you share the Application.StartTask code snippet here or wrap up a small test case?

Best,
Alaa

//

0 votes

Can’t reproduce, see test case.

Please provide Wisej.NET version and a compilable test case or modify existing test case.

Best regards
Frank

0 votes

Hi Nicholas,

you can use the GetImage or GetImageAsync functions to get the chart as an image:

https://docs.wisej.com/extensions/extensions/chartjs/api/wisej.web.ext.chartjs.chartjs

Best regards
Frank

0 votes

Hi Francesco,

unfortunately we can’t tell what’s different for the one DataGridView by just looking at screenshots.
Please try to wrap up a compilable test case and we can investigate some more.

Best regards
Frank

0 votes

Hi Nicholas,

did you try our html2canvas extension?

https://docs.wisej.com/extensions/extensions/html2canvas

Best regards
Frank

0 votes
In reply to: New ChatControl?

Hi Daniel,

We have updated the DemoBrowser to include the Chat control demo.

You can visit it here, you can also check the source code on our GitHub repository.

Best regards,
Alaa

0 votes
In reply to: Desktop Size

Hello,

Yes, there is

<meta name=”viewport” content=”width=device-width, initial-scale=1.0″>

in the default.html

I recognized, when i start the webpage on a smartphone and at the beginning i change from portrait to landscape and back, it works.

After changing portrait landscape it has the right pagesize, but not on first start.

Rupert

 

0 votes
In reply to: Desktop Size

Hi Rupert,

Did you add the ViewPort meta tag to your Default.html?

Best,
Alaa

0 votes

Hi Nicholas,

Did you install the ASP.NET Core hosting bundle on your server?

Best,
Alaa

0 votes

The solution is simple, you just need to know it, I’ll publish it so that someone can use it as a simple and effective answer.

In the Main Method, or wherever it is useful, just write:

Application.EnableUnloadConfirmation = true;

That’s all folks.

Greetings

  • Francesco Leo answered Jan 24, 2024 - 3:50 pm
  • last active Jan 24, 2024 - 3:54 pm
0 votes

It’s not an event, it’s  a property. Set it to true and the browser will show its standard alert. If you to run javascript code on the unload or beforeunload event you can simply add javascript to your default.html page. Search for unload or beforeunload.

  • Luca answered Jan 24, 2024 - 2:37 pm
  • last active Jan 24, 2024 - 2:37 pm
0 votes

Hi Neil,

You can call  this.tinyMCE1.Eval(“this.editor.getBody().style.backgroundColor = \”#FFFF66\”;”);

But make sure to attach it to the Appear event of the TinyMCE wrapper:

private void tinyMCE1_Appear(object sender, System.EventArgs e)
{
this.tinyMCE1.Eval(“this.editor.getBody().style.backgroundColor = \”#FFFF66\”;”);
}

Best,
Alaa

//

//

  • Alaa (ITG) answered Jan 24, 2024 - 12:40 pm
  • last active Jan 24, 2024 - 12:41 pm
0 votes
Hi Francesco,
I would also like to point out the following:

The unload event in all browsers is the same for navigating or closing. All you can do is enable the browser’s alert and cancel closing the tab or navigating away.

It is not possible to process a server request when closing the tab or navigating away or closing the browser.
Best,
Alaa

//

0 votes

Hi Francesco,

You can use the Application.BrowserTabDeactivated event for now, it might cause a few issues if your users are constantly switching between tabs.

This could be an enhancement for a future release, I’ll log it and update you ASAP!

EDIT: I would like to point out that we do have an event Application.EnableUnloadConfirmation that you can use!

Best,
Alaa

  • Alaa (ITG) answered Jan 24, 2024 - 12:11 pm
  • last active Jan 24, 2024 - 12:24 pm
Showing 821 - 840 of 11k results