NavigationBar ShowShortcut

0
0

Hi Wisej,

I am using NavigationBar control.

with parent item, I can set ShowShortcut=True

but child item, I can’t set ShowShortcut=True.

How to do set ShowShortcut=True with child item?

Thank you.

  • You must to post comments
0
0

There is a problem with reading the property back here:

https://github.com/iceteagroup/wisej-extensions/blob/2.0/Wisej.Web.Ext.NavigationBar/NavigationBarItem.cs

/// <summary>
/// Shows or hides the shortcut button.
/// </summary>
[DefaultValue(false)]
public bool ShowShortcut
{
 get => this.shortcut.Visible;
 set => this.shortcut.Visible = !this.CompactView && value;
}

 

The shortcut icon returns Visible false when set to true while the parent item is collapsed. It works at runtime. We’ll post a fix to the source project in Github.

  • You must to post comments
Showing 1 result
Your Answer

Please first to submit.