ginjaninja 613 Posted 18 hours ago Posted 18 hours ago 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 5236 Posted 14 hours ago Solution Posted 14 hours ago 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 613 Posted 14 hours ago Author Posted 14 hours ago 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 613 Posted 2 hours ago Author Posted 2 hours ago (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 2 hours ago 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