Summary: | Choose staff interface homepage default action | ||
---|---|---|---|
Product: | Koha | Reporter: | Mirjam Vantieghem <mirjam.vantieghem> |
Component: | Staff interface | Assignee: | Bugs List <koha-bugs> |
Status: | NEW --- | QA Contact: | Testopia <testopia> |
Severity: | enhancement | ||
Priority: | P5 - low | CC: | angela.berrett, bwsdonna, catrina, gmcharlt, martin.renvoize, michaela.sieber |
Version: | Main | ||
Hardware: | All | ||
OS: | All | ||
Change sponsored?: | --- | Patch complexity: | --- |
Documentation contact: | Documentation submission: | ||
Text to go in the release notes: | Version(s) released in: | ||
Circulation function: |
Description
Mirjam Vantieghem
2024-02-08 13:14:27 UTC
It would probably be possibly to solve this with a little jQuery. If you add this to IntranetUserJS it will switch to the catalog search form on any page where the circulation form is active by default: $(document).ready(function(){ if( $("#circ_search_panel").length > 0 && $("#circ_search_panel").hasClass("active") ){ $("#header_search").selectTabByID("#catalog_search_panel"); } }); While the jquery is fine for a workaround, it would be really helpful to have the ability to set a default action. We get lots of requests for this. We are trying to discourage the use of jquery and instead have these functionalities built into Koha. +1 As a non-circulating library we had JQuery built to default to search the catalog. Being able to set this ourselves would have been great. After the 24.05 update on our dev system that JQuery did not follow through and now we have to manually change the search every time until that JQuery is added back in. (In reply to Owen Leonard from comment #2) > If you add this to IntranetUserJS it will switch to the catalog search form > on any page where the circulation form is active by default: > > $(document).ready(function(){ > if( $("#circ_search_panel").length > 0 && > $("#circ_search_panel").hasClass("active") ){ > $("#header_search").selectTabByID("#catalog_search_panel"); > } > }); Thanks, Owen! Our Koha version (23.11) seems to be using different terms for id/class/hrefs, so this didn't work for us. But after taking out "_panel", to match the terms used in our version, it worked: $(document).ready(function(){ if( $("#circ_search").length > 0 && $("#circ_search").hasClass("active") ){ $("#header_search").selectTabByID("#catalog_search"); } }); Because we do have circulation, we didn't want this to be default on the circulation pages, so I changed it only on homepage and Reports module pages (all the other pages already had the desired default action) with this JQuery: $(document).ready(function(){ if( $("#circ_search").length > 0 && $("#circ_search").hasClass("active") ){ $("#main_intranet-main #header_search").selectTabByID("#catalog_search"); } }); $(document).ready(function(){ if( $("#circ_search").length > 0 && $("#circ_search").hasClass("active") ){ $(".rep #header_search").selectTabByID("#catalog_search"); } }); This is fine for a temporary solution, but as I've already noticed that the terms for id/class/hrefs change after upgrades, I also think that it would be better to have a system pref in the staff client to set this. |