All Answers

0 votes

The issue is fixed and will be available in the next release of Wisej.

Best regards,

Levie

0 votes

Is there a regression? I just got this in WiseJ 2.0.28.  The Session Timeout box looks weird and distorted, too.

 

 

  • Andrew Niese answered Jul 31, 2019 - 11:29 pm
  • last active Jul 31, 2019 - 11:51 pm
0 votes

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

0 votes

Hi Ulisses,

These changes can be made in the Wisej.Themebuilder application.

– Change AlertBox font and image

  • For font, you can add a property called “font” to “Alertbox” (attached screenshot)
  • For the images, you can edit them “messagebox-error”, “messagebox-information”, etc. in “Editor” under “Images” in the ThemeBuilder (attached screenshot)

– Change ErrorProvider Tooltip font and image

  • The fonts and images are available the same way as explained above, I’m attaching a screenshot of the Helptip icon location as well
  • The images are available under “images” in the editor, let me know if you have any issues or need clarification.

– Increase the Textbox SVG icon size (Tools property)

– Change ShowLoader GIF (not startup)

  • There is an image called “ajax-loader” in ThemeBuilder that is used when processes take longer than normal.  You can replace this to get your desired behavior/image.
  • You can also try adding a loader.gif image in the project’s root directory to change the loader icon.

– Reduce the NavigationBar title text (is not working)

– Increase the SVG icon of the NavigationBar items

  • Same as above

If you have any other questions please feel free to reach out!

Best regards,

Levie

0 votes

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

  • Levie (ITG) answered Jul 31, 2019 - 3:38 pm
  • last active Jul 31, 2019 - 6:04 pm
0 votes

Bump.

0 votes

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.

 

 

0 votes

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

0 votes

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

0 votes

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

  • Luca answered Jul 30, 2019 - 8:52 pm
  • last active Jul 30, 2019 - 8:53 pm
0 votes

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

0 votes

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.

  • Luca answered Jul 30, 2019 - 8:49 pm
0 votes

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.

  • Luca answered Jul 30, 2019 - 8:46 pm
  • last active Jul 30, 2019 - 8:46 pm
0 votes

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

  • Levie (ITG) answered Jul 30, 2019 - 4:49 pm
  • last active Jul 30, 2019 - 4:51 pm
0 votes

Hi Christian,

Thanks for reporting!  This is a known issue and is logged as #1939

We’ll keep you updated.

Best regards,

Levie

0 votes

version de win 10

0 votes

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.

0 votes

Any update on this?

0 votes

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

0 votes

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.

  • Luca answered Jul 29, 2019 - 9:16 am
  • last active Jul 29, 2019 - 9:17 am
Showing 5661 - 5680 of 11k results