Thank you, Luca. I uncommented the lines, but unfortunately this error is occurring.
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.
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
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…
Hi Sean
This is fixed in the recent release 2.5.32
Regards
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
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
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
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
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
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
Hi,
you just have to register here and will receive your license key and a download link:
Best regards
Frank
Hi Vincent,
this is fixed in our latest Release (Wisej 2.5.32).
Best regards
Frank
I attach a little sample that show how to use it
HTH
Hi Shady
Have you seen the Geolocation extension?
https://github.com/iceteagroup/wisej-extensions/tree/2.5/Wisej.Ext.Geolocation
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.
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)
Hi Shady,
The mobile integration package does support exporting as an AAB.
Best,
Levie
Kurt,
could not reproduce here. Can you please wrap up a runnable test case that illustrates this issue?
Thanks in advance,
Frank
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.
