The issue is fixed and will be available in the next release of Wisej.
Best regards,
Levie
Is there a regression? I just got this in WiseJ 2.0.28. The Session Timeout box looks weird and distorted, too.
Hi Andrew,
I see what you’re talking about with the lateral movement, it’s the same behavior for computers when the trackpad pans. I will check into this for you whether it would be possible to change this behavior.
It sounds like you would like some feature that allows you to choose programmatically when the ContextMenu closes (ex. when a user clicks a MenuItem).
I’ll get back to you on this.
Best regards,
Levie
Hi Ulisses,
These changes can be made in the Wisej.Themebuilder application.
– Change AlertBox font and image
– Change ErrorProvider Tooltip font and image
– Increase the Textbox SVG icon size (Tools property)
– Change ShowLoader GIF (not startup)
– Reduce the NavigationBar title text (is not working)
– Increase the SVG icon of the NavigationBar items
If you have any other questions please feel free to reach out!
Best regards,
Levie
This issue was logged as #1941 and will be fixed in the next release of Wisej!
If you need it now, you can download the patched extension from https://github.com/iceteagroup/wisej-extensions/tree/2.0/Wisej.Web.Ext.RibbonBar
Best regards,
Levie
Bump.
Yes, that’s what I am saying. I restarted VS2017 and opened a new project (VB.NET WiseJ Web App) and tried it again, but it still doesn’t show up on Autocomplete.
Pretty minor as far as bugs go, but I wanted to let you know.
Hi Glenn,
As another (temporary) workaround, you can add the Framework.Design.dll reference to your project, assuming it’s not already in there! Build the solution, and restart VS.
Let me know if this works for you.
Best regards,
Levie
Hi Andrew,
When typing “frmCCP.App…” the AppearanceKey suggestion doesn’t show?
I just tried it and it seemed to work fine on my devices. Are you having other issues with Intellisense as well or just this? You may need to restart Intellisense / Visual Studio
Let me know.
Best regards,
Levie
If you meant another tab for “windows/pages”. Otherwise, objects in the same sessions are already available to all windows and pages. You can find then in Application.OpenForms and OpenPages.
You can always save a reference in Application.Session.
And there is the Application.FindComponent methods that can find any control in any window or page at any level in the session.
https://wisej.com/docs/2.0/html/M_Wisej_Web_Application_FindComponent.htm
Hi Ulisses,
There are a few ways to do that. The way you have is fine. Application.Session is a dynamically allocated Key/Dictionary collection.
Another way is to add a public property to the the new window and assign a value to that when instantiating it in the first window. For example:
dim win2 as new Window2()
win2.SomePublicProperty = 5
win2.ShowDialog()
It depends what you’re trying to do!
Best regards,
Levie
Another tab is another session. You can share statics across sessions but you need to handle the thread synchronization like in any multi threading system.
It’s not possible. There are checks in place in Wisej to prevent sharing the state. You wouldn’t be able to show a control on one tab and keep all the other tabs in sync and inevitably end up with a very messed up state.
In addition to that there are other checks in place to prevent session spoofing, etc.
Hi Glenn,
Still looking into this. I was not able to replicate the issue either.
For now, you can modify the RibbonBar through the designer code of the form if the property editor and “fast” editor are not working for you. I am attaching your project with some RibbonBarItems you can use it as a template. You can use Luca’s screenshot of the different types of RibbonBarItems if you need the names of the other options.
Let me know if this works for you.
Best regards,
Levie
Hi Christian,
Thanks for reporting! This is a known issue and is logged as #1939
We’ll keep you updated.
Best regards,
Levie
version de win 10
Hi,
Is there any other way to manage the items in ribbonbar, than waiting this to be fixed? I hope to hear from you soon.
Thanks.
Any update on this?
Thanks Simone,
I was able to replicate the issue! This issue as logged as #1940.
I’ll keep you updated to the status of the issue!
Best regards,
Levie
Task.Run and Application.StartTask are the same with the difference that Application.StartTask preserves the session context.
Otherwise you’d have to save it using Application.Current and Application.RunInContext.
Application.Update is necessary to push the UI updates to the browser. When running a task there is no request/response.
You can also change any event (i.e. Click) into an async event which will run asynchronously in a task.
