TWebSideMenu problems

Using provided demo if webformcreate event is commented or webformcreate only contains following :
it := WebSideMenu1.Items.Add;
it.Text := 'Favorites';
it.Hint := it.Text;
it.ContentControl := wpFavorites;
it.MaterialGlyph := 'star';
it.MaterialGlyphType := mgOutlined;

or does not contain the following;
it := WebSideMenu1.Items.Add;
it.&Type := itControl;
it.Control := WebEdit1;
it.Hint := 'Search';
it.ContentControl := wpSearch;
it.MaterialGlyph := 'search';
it.MaterialGlyphType := mgOutlined;

the menu does not show properly.

Also Fixed items at the bottom do not show when FixedItems is populated and FixedVisible is set to true.

Hi,

Please note that the "Search" item is of type "itControl", this means it displays a TWebEdit control that was placed directly on the form at design-time.
If this item is removed from the SideMenu, the WebEdit1 control should also be removed from the form or set to Visible False. This is required to make sure the SideMenu is displayed correctly.

There was an issue with the visibility of the fixed items. This has now been resolved and the update will be available with the next TMS WEB Core release.