If I set a TWebMainMenu
item's visibility in the Designer, it follows the setting when run. But if I programmatically toggle it, the item's visibility does not change from design time. Please see the attached simple demo of this behavior.
MainMenuIssue.zip (10.1 KB)
Change visibility of items this way
webmainmenu1.BeginUpdate;
Filter.Visible := not Filter.Visible;
webmainmenu1.EndUpdate;
Thanks for the clarification.
This topic was automatically closed 24 hours after the last reply. New replies are no longer allowed.