ginjaninja 623 Posted June 12 Posted June 12 Video says it all, i had a navigation fail using the back button on a multi-tab MVC plugin i was working on in that you lose the tab header when clicking back button in top left in the UI (not on the browser). It turns out the demo sdk patterns which i was largely copying also exhibit the issue. Is there something missing from EmbyPluginUiDemo that would stops the misbehaviour of the back button, that i could copy to my plugin? thank you 2026-06-12 23-26-16.mp4
Solution softworkz 5280 Posted June 13 Solution Posted June 13 3 hours ago, ginjaninja said: s there something missing from EmbyPluginUiDemo that would stops the misbehaviour of the back button, that i could copy to my plugin? No, you're not missing anything. This bug is known and the fix is sitting around for quite some time already: @Luke
ginjaninja 623 Posted June 13 Author Posted June 13 20 minutes ago, softworkz said: No, you're not missing anything. This bug is known and the fix is sitting around for quite some time already: @Luke thanks for confirming
ginjaninja 623 Posted June 13 Author Posted June 13 (edited) In case anyone stumbles on this and it helps Best work around i found was to set allowback=false on the page, but that only works if showback=true. public bool ShowSave { get; set; } = false; public bool ShowBack { get; set; } = true; public bool AllowSave { get; set; } = false; public bool AllowBack { get; set; } = false; Edited June 13 by ginjaninja
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now