All Answers

0 votes
In reply to: Wisej 3 - IIS hosting

Thank you, Luca. I uncommented the lines, but unfortunately this error is occurring.

  • Ulisses answered Apr 18, 2022 - 4:37 pm
0 votes

It’ not a Wisej issue. Your server is refusing the websocket connection or there is a proxy in between. Wisej has nothing to do with the way the browser and the server open a WebSocket connection, it’s a browser native class. If you need customized support on your installation please contact sales at wisej.com.

  • Luca answered Apr 18, 2022 - 4:09 pm
0 votes

Hi Ulisses,

The ThemeBuilder is no longer included in the installer.
However it can be downloaded here: https://wisej.com/
Just scroll down the page and you’ll see a download button for it!

HTH,
Alaa

0 votes
In reply to: Wisej 3 - IIS hosting

The same as any ASP.NET Core app.

ASP.NET Core doesn’t use the IIS pipeline anymore. We are updating our deployment documentation, in the meantime you can use any resource that is available for ASP.NET core apps.  https://docs.microsoft.com/en-us/aspnet/core/tutorials/publish-to-iis?view=aspnetcore-6.0&tabs=visual-studio

To make it easier we provide a web.config that is ready for IIS. See the comments in the web.config file. You basically have to enable an IIS handler that plays in between IIS and your ASP.NET Core app. We didn’t change this, it’s all Microsoft doing…

 

  • Luca answered Apr 18, 2022 - 2:49 pm
0 votes

Hi Sean

This is fixed in the recent release 2.5.32

Regards

  • Paul answered Apr 18, 2022 - 2:23 pm
1 vote

Hi Sun,

Did you try recompiling before you closed Visual Studio and reopened? That’s generally the culprit.

Do you have multiple versions of Wisej installed?

Best,

Levie

0 votes
In reply to: Wisej3 Startup

UseStartup has been deprecated in NET 6. Wisej doesn’t really care since it’s a middleware just like any other. All it needs is UseWisej.

https://docs.microsoft.com/en-us/aspnet/core/migration/50-to-60-samples?view=aspnetcore-6.0

  • Luca answered Apr 18, 2022 - 12:48 pm
0 votes
In reply to: Wisej3 Startup

Hi Thomas, thanks for your answer.

I’ve seen the instructions. But what I’m saying is that I do not see any place with a .UseStartup<Startup> to connect the Startup class with the host.
What am I missing?

Best,
Alex

0 votes
In reply to: Wisej3 Startup

Hi Alex, it is similar in Wisej 3. See the following link to get it working:
https://docs.wisej.com/docs/releases/whats-new-in-3.0/update-existing-projects

Best wishes
Thomas

0 votes

Hi,

Thank you for using Wisej!

To fix your issue, please run the following command from VS Developer Command Prompt: devenv /installVSTemplates

You can find more info here: https://docs.wisej.com/docs/getting-started-1/new-project#missing-templates

HTH,

Alaa

0 votes

Hi,

please refer to the Troubleshooting section in our online documentation:

https://docs.wisej.com/docs/releases/whats-new-in-3.0/troubleshooting

Best regards
Frank

0 votes

Hi,

you just have to register here and will receive your license key and a download link:

Licenses Model 2022 – Developer Licenses

Best regards
Frank

0 votes

Hi Vincent,

this is fixed in our latest Release (Wisej 2.5.32).

Best regards
Frank

0 votes
In reply to: RUN SCRIPT

I attach a little sample that show how to use it

HTH

  • Paul answered Apr 14, 2022 - 3:43 pm
0 votes
In reply to: RUN SCRIPT

Hi Shady

Have you seen the Geolocation extension?

https://github.com/iceteagroup/wisej-extensions/tree/2.5/Wisej.Ext.Geolocation

 

  • Paul answered Apr 14, 2022 - 3:16 pm
0 votes

Yep, it’s caused by a changed related to a fix for a glitch in mobile browsers “leaking” the pointerup events to the underlying elements. It should be fixed in our current internal build. You can try this patch (to be removed with the new release):

Create a file as an Embedded Resource in /Platform/wisej.web.DataRepeaterPatch.js

qx.Mixin.define("wisej.web.dataRepeater.ItemContentPatch", {

  construct: function () {
    this.addListener("click", this._onPointerDown, this);
    this.removeListener("pointerdown", this._onPointerDown, this);
 }
});

qx.Class.patch(wisej.web.dataRepeater.ItemContent, wisej.web.dataRepeater.ItemContentPatch);

 

In AssemblyInfo.cs uncomment [assembly: Wisej.Core.WisejResources(ExcludeList: “”)]

Let me know.

 

  • Luca answered Apr 13, 2022 - 6:19 pm
0 votes

Hi Greg,

Wisej designer in Visual Studio doesn’t recognize your code because the designer execute UI from method InitializeComponent()

And after debug is not visible because IsVisible property is false on your Panel

PS. All wisej widget (Component) are C# class you can manipulate it directly with C#

Eg :
Button button = new Button();
button.Text = "Simple test";
button.Dock = DockStyle.Top;
Panel container = new Panel();
container.Dock = DockStyle.Fill;
container.Controls.Add(button);

 

Best,

Kevin (ITG)

  • Kevin answered Apr 12, 2022 - 5:56 pm
0 votes

Hi Shady,
The mobile integration package does support exporting as an AAB.
Best,
Levie

0 votes
In reply to: Tab Index Breaking CSS

Kurt,

could not reproduce here. Can you please wrap up a runnable test case that illustrates this issue?

Thanks in advance,
Frank

0 votes

Hi Kevin, i know that Application.ShowConsole show or hide the debug console (true show, false hide). But the browser always start the debug console when the F7 key is pressed by user. Is it possible to change debug console Keys or disable the console display?

Gabriele.

Showing 2661 - 2680 of 11k results