All Answers

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
0 votes
In reply to: Application.ShowLoader

Hi Alaa,

Thanks for the easy answer! It was indeed not installed. After installing it worked like a charm! Also, it feels as if the application is now more responsive too.

Vincent

  • Vincent answered Jan 24, 2024 - 12:11 pm
0 votes

Hi Ruben,

Would it be possible to prepare a sample for us ?

Best,
Alaa

//

0 votes
In reply to: Application.ShowLoader

Hi Vincent,

Can you please double check if WebSocket is enabled on your server environment?

It’s a feature that you need to install if you’re running on Windows Server, it does not come out of the box with IIS.

Best,
Alaa

//

0 votes

Hi Brayden,

Alternatively, you can also try to add a KeyDown listener in JavaScript and build a keyboard buffer on the client. When the buffer fills up you can fire a WidgetEvent for a “scan” event.

Relevant Links:
https://wisej.com/support/question/keydown-keyup-keypress-events-does-not-work
https://docs.wisej.com/api/wisej.web/general/control#initscript
https://docs.wisej.com/api/wisej.web/general/control#widgetevent

HTH,
Levie

0 votes

Hi Brayden,

Using the barcode scanner in the web browser (Chrome, Edge, etc.) as a virtual keyboard will require you to have a focused textbox at all times that manages the KeyPress or TextChanged event.

If you would like a deeper integration that intercepts the values from the barcode scanner without a textbox (programmatically in C#), this can be achieved using Wisej.NET Hybrid (docs.wisej.com/Hybrid).

If you would like assistance with this, you can reach out to sales@wisej.com to order some consulting packages.

Best regards,
Levie

  • Levie (ITG) answered Jan 22, 2024 - 2:45 pm
  • last active Jan 22, 2024 - 3:06 pm
0 votes

Hello Tim,

sorry, but i get the same error.

Methon not found: void System.Drawing.Text.PrivateFonCollection……

Rupert

0 votes

You can however, host anything in an IFrame.

//

0 votes

Hi Gabriele,

Unfortunately, that’s not possible with Wisej.NET at the moment.

Best regards,
Alaa

//

0 votes
In reply to: WebGL control

Something similar to this?

https://docs.wisej.com/api/wisej.web/content/canvas

If you’d like to use Wisej.Web.Canvas as a base to build something similar using canvas.getContext(“webgl”) instead of “2d” we can prepare a public extension on github with the Canvas code as a base/placeholder then you can fork it and complete the extension.

  • Luca answered Jan 18, 2024 - 4:15 pm
Showing 981 - 1000 of 11k results