navigationBar strange resize

0
0

Hi.

In a form (maximized) I have a NavigationBar Left/Top/Bottom anchored and Left Docked.

With this event:

 private async void navigationBar1_ItemClick(object sender, Wisej.Web.Ext.NavigationBar.NavigationBarItemClickEventArgs e)
        {
            string k = e.Item.Tag.ToString();
            ShowLoader = true;
            await this.CheckLogin(true);
            ShowLoader = false;
            switch (k)
            {
                case "CHECKLIST":
                    FrmCL CL=null;    
                    if (CL == null) { CL = new FrmCL(); CL.Show(); }
                    break;
            }
            Wisej.Web.Application.Update(this); // update the client

        }

From the second click, the NavigationBar  seems to revert to the original height (desgin time height).

Only if I change the browser window size the NavigationBar  height returns to normal, but after 2 more Item clicks the height still returns incorrect

Attachment
  • You must to post comments
0
0

Please attach  a sample project. Anchoring and docking are exclusive, Docked to Left will will fill vertically, and keep the designed width. All the samples we have with the NavigationBar are docked to the left and the docking engine is the same for all controls and they all work well.

  • Davide Mercanti
    a basic example works as you described. Here is the link to my strange behaviour http://data.sygest.it/download/20200710_082210.mp4, but I don’t know what to check.
  • Luca (ITG)
    That looks really strange. Can you send the test app? You can send it to support at wisej.com. BTW a great free tool to screen record the browser tab is screencastify.
  • You must to post comments
Showing 1 result
Your Answer

Please first to submit.