Given the following
it := NavMenu.Items.Add;
// it.Text := 'Purchasing';
it.Text := GetLangStr(DM.E_UnitStrs, '', '2');
it.Hint := it.Text;
it.MaterialGlyph := 'shopping_cart';
it.MaterialGlyphType := mgOutlined;
it.Expanded := false;
it.Enabled := false;
it.ContentControl := HostMasterPanel;
it := NavMenu.Items.Add;
// it.Text := 'Orders';
it.Text := GetLangStr(DM.E_UnitStrs, '', '3');
it.Hint := it.Text;
it.MaterialGlyph := 'shopping_basket';
it.MaterialGlyphType := mgOutlined;
it.SubItem := True;
it.Enabled := true;
it.ContentControl := HostMasterPanel;
Purchasing menu item and it's arrow shows dimmed out, but when clicked drops open it's submenus which can be executed.
Should it not drop open if it is disabled ?