Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
140
How can i Hide a menu item in WebListBar
posted

Hi,

How can i Hide a menu item in WebListBar

Parents
No Data
Reply
  • 4493
    posted

    Hello sapineni,
    If you are talking about setting some property like "Visible", there is no such property. However you can programatically set the entire group to be either Disabled (this.UltraWebListbar1.Groups[0].Disabled = true;) or Expanded (this.UltraWebListbar1.Groups[0].Expanded = true;). also you can set Enabled property to false for the item you want to "hide" (this.UltraWebListbar1.Groups[0].Items[0].Enabled = false;). Unfortunatelly the ony way to remove entirely an item is to remove it from a collection.

    Hope this helps.

Children
No Data