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
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.
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
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
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
It depends on the window size. When the window is widened, you should see the problem. I will attach a screenshot.
I cannot reproduce with your test project. It looks fine to me when running in Visual Studio, see attached screenshots.
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.
Hello,
I looked at your sample, here are some things you can try:
Hope this helps!
-Julie
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
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
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
Attached is a sample program source that reproduces the problem.
Thank you in advance.
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
“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.
Why this ?
config.StartupUrl = “https://www.google.com/maps”;
I have reconfigured the server and the application is running.
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
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>>);
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