Especially when you have multiple notifications displaying at the top of the screen, the tabs are pushed lower on the screen, and sometimes off the screen. It is not possible to scroll to see the bottom of the tab div/window.
I have a patch to fix this issue, along with the other issue where the Related Links datatype is affected by Page Notifications - postbacks aren't honoured and related links are not saved.
I think the core issue comes down to modification of the controls collection breaking Related Links.
To fix, grab the source from codeplex and update the ShowNotifications method from:
protectedvoid ShowNotification(ContentPlaceHolder placeHolder, string msg)
{
var panel = new Panel();
panel.Style.Add("background-color", "#fff9c2");
panel.Style.Add("border", "solid 1px #ffd800");
panel.Style.Add("color", "#333333");
panel.Style.Add("padding", "10px");
panel.Style.Add("margin-bottom", "10px");
var literal = new Literal();
literal.Text = msg;
panel.Controls.Add(literal);
placeHolder.Controls.AddAt(0, panel);
}
Which uses jQuery at the bottom of the control collection (does not seem to affect Related Links) to prepend a message to the top of the page (inside the scrollable container).
Notifications Push Items Off Screen
Especially when you have multiple notifications displaying at the top of the screen, the tabs are pushed lower on the screen, and sometimes off the screen. It is not possible to scroll to see the bottom of the tab div/window.
I have a patch to fix this issue, along with the other issue where the Related Links datatype is affected by Page Notifications - postbacks aren't honoured and related links are not saved.
I think the core issue comes down to modification of the controls collection breaking Related Links.
To fix, grab the source from codeplex and update the ShowNotifications method from:
to:
Which uses jQuery at the bottom of the control collection (does not seem to affect Related Links) to prepend a message to the top of the page (inside the scrollable container).
is working on a reply...