All Answers

0 votes

Take a look at Collapsed property

https://docs.wisej.com/api/wisej.web/containers/wisej.web.panel#collapsed

True the panel is open

False the panel is closed

 

0 votes

Ok, I figured out the problem… and boy do I feel dumb. I was checking the functionality out in different browsers and didn’t realize I had Brave set up as my default browser to debug with. Brave locks down a lot of things and as it turns out, this was causing the issue. It was an easy fix – to turn off Brave’s “shield” option for the site – but if anyone else sees this, please know that a user’s browser option may interfere with certain functionality, especially if they have their browser options locked down.

Thanks for looking into this; you can consider it closed now since I figured out what was causing it.

0 votes

Hi Lloyd,

thanks for reporting this, we’ll investigate to see what’s happening.
In a first attempt I could not make the DemoBrowser at https://demo.wisej.net to fail.
Does it happen with all image files for you or just some?
If the latter, can you please send one to us (either here or to supportATwisej.com)

Thanks in advance,
Frank

0 votes

Hi,

Intercepting a package is prevented by TLS encryption and signature.

https://de.m.wikipedia.org/wiki/Transport_Layer_Security

A MITM attack is the same on any protocol like http, udp, etc.

Please contact our Professional Services if you want to learn more about Browser Security and TLS configuration.

Best regards

Frank

0 votes

Hi Wolfgang,

this is working like intended and is caused by your setting of the Margin.
Please change the Margin.Top value to 0 to achieve the desired behavior.

Best regards
Frank

0 votes
In reply to: Wisej-3-Chat-Control

It depends on the window size. When the window is widened, you should see the problem. I will attach a screenshot.

0 votes
In reply to: Wisej-3-Chat-Control

I cannot reproduce with your test project. It looks fine to me when running in Visual Studio, see attached screenshots.

0 votes

Thank you.
I was able to solve the problem with dotnet publish from the command line.
“publish” with a right mouse button click from the project.
The display is grayed out, so I have to use the Windows application
In the case of a Windows application, do I just run Exe in the release folder?
I was mistaken.

0 votes

Hello,

I looked at your sample, here are some things you can try:

  1. Make sure to add the “Wisej Hybrid Remote Application” or “Wisej Hybrid Local Application” project template to your solution, not just the “Hybrid Client Application”. Here is a tutorial video for making a Wisej Hybrid Remote Application: https://docs.wisej.com/hybrid/development/remote-application
  2. I don’t think this is what you are experiencing, because you were able to publish the app and create an executable. However, just in case- if you right-click on the Hybrid Client project and see that the “publish” option is grayed out, you can publish using the dotnet publish command.

Hope this helps!

-Julie

0 votes
In reply to: Wisej-3-Chat-Control

I tried creating a project with the Chat Control, and I cannot reproduce, it is working fine for me. See attached sample.
Can you please provide a sample project that reproduces the issue?

Please follow the guidelines at https://wisej.com/support/question/forum-guidelines under “Before Posting an Issue”

Thanks,

Julie

1 vote

Hi Steve and Frank

I want to echo what Steve has said. I have found it remarkable how software development has gone backwards over the years. All we needed was VB6 to be web enabled (and from what I can see Wisej 3 has largely achieved this).  Instead we have had 20 years of increasing complexity and little gain in productivity. Webforms was a good first attempt but for some reason was never improved enough to achieve this and finally dropped all together. I wish all success to Wisej I’m happy to have finally found a development environment that offers everything I need.

“Complexity is he enemy of good software”

Regards Mark
.NET Solution Architect

0 votes

I can reproduce, assuming you mean this SplitContainer here:

https://wisej-demobrowser.azurewebsites.net/#Containers/SplitContainer/Features

I can move both the vertical and horizontal bars of the SplitContainer in the web browser, but I can only move the horizontal one on mobile.

So the issue is being unable to resize/move the vertical bar of the SplitContainer on mobile.

We’ll look into this.

-Julie

  • Julie(ITG) answered Sep 11, 2024 - 8:34 pm
  • last active Sep 11, 2024 - 8:38 pm
0 votes

Attached is a sample program source that reproduces the problem.
Thank you in advance.

0 votes

Can you please provide a sample project that reproduces the issue?

Please follow the guidelines at https://wisej.com/support/question/forum-guidelines under “Before Posting an Issue”

We will check out your sample and see if we can reproduce.

Thanks,

Julie

 

  • Julie(ITG) answered Sep 10, 2024 - 1:23 pm
  • last active Sep 10, 2024 - 1:24 pm
0 votes

“config.StartupUrl = “https://www.google.com/maps”;” as a Windows application in a hybrid before creating a web page for testing with no reason to use I just used the GoogleMAP address as a test to see if it would work as a Windows application in a hybrid before creating a test web page.

0 votes

Why this ?

config.StartupUrl = “https://www.google.com/maps”;

 

0 votes

I have reconfigured the server and the application is running.

0 votes

Yes, you can paste hex color values into the Theme Builder.

If you select “Colors” on the left hand side, you will see a list of all the colors for that theme and their hex values. Simply click on one of the color’s hex values and you can paste in your own custom hex value. See first screenshot.

You can also edit the hex values of the colors by clicking on the “editor” tab and scrolling down until you see “colors”. Then paste in your custom hex value for the color that you want to change. See second screenshot.

Alternatively, instead of hex values, you can use color names (eg “red”, blue”) or rgb/rgba values (eg “rgba(255,255,255,0.51)” or “rgb(90, 138, 211)” )

Hope this helps!

-Julie

 

0 votes

To update (late) this thread, generic services are supported since 3.5.4:

 

// Register generic service
Application.Services.AddService(typeof(DBConnection<>));

// Request service
var dbTrucks = Application.Services.GetService<DBConnection<Truck>>);
var dbEmloyees = Application.Services.GetService<DBConnection<Employee>>);

 

  • Luca answered Sep 6, 2024 - 2:39 pm
0 votes

You can use the MouseMove event. Note that MouseMove is a “lazy event”- it is not fired unless you attach to it. https://docs.wisej.com/docs/controls/general/lazy-events#lazy-events

You’ll want to attach to the MouseMove event when you start moving the control (startmove) and detach when you stop moving the control (endmove). Otherwise the event will fire too often, eg when you are moving the mouse around on top of the control and not dragging it.

Code to attach to the MouseMove event for picturebox1:

this.pictureBox1.MouseMove += new Wisej.Web.MouseEventHandler(this.pictureBox1_MouseMove);

MouseMove documentation: https://docs.wisej.com/api/wisej.web/general/control#mousemove

Inside the handler for the MouseMove event (ie pictureBox1_MouseMove), call your code to draw the lines between the controls.

 

Hope this helps!

Julie

  • Julie(ITG) answered Sep 6, 2024 - 2:31 pm
  • last active Sep 6, 2024 - 2:38 pm
Showing 361 - 380 of 11k results