You are viewing limited content. For full access, please sign in.

Question

Question

Can Web Client 11 search bar defaults be set?

asked on September 23, 2021

In Web Access 10, the search bar at the top of the page remembers what you had selected the last time you ran a search and keeps that selected. It's very useful for us for making custom quick search the primary/default search for users.

In version 11, it seems that the selected options get wiped out and it always falls back on a default, with all 4 basic search types selected. Is there any way to take control of these defaults, like setting to a custom quick search, deselecting one or more of the basic search boxes, or setting the option to "within current folder"?

Thanks.

0 0

Answer

APPROVED ANSWER
replied on September 24, 2021

Hey Pieter,

Here's a Custom Action script for Web Client 11 that should do most to all of what you want. @████████because we were discussing this the other day. Credit and thanks to @████████for writing said script.

Result looks like:

// v11
var includeWithinCurrentFolder = true;
var hideAll = false;
if (typeof window.qsearchDisabled == 'undefined') {
  window.qsearchDisabled = true;
  
  fixQuickSearch();      
  
  $('div.searchInputDiv').click(fixQuickSearch);
  $('div.quickSearchFilters').click(fixQuickSearch);
  
  
}
return false;
function fixQuickSearch() {
  setTimeout(function() {
      let start = 1;  
      
        // Is there at least one custom search? 
        if ($('select[ng-model="currentCustomFilter"] option').length>1) {
            // select first if no thing is selected
            if (!$('select[ng-model="currentCustomFilter"]').val()) {
                $('select[ng-model="currentCustomFilter"] option:eq(1)').prop('selected', true);
            }
            
            hideAll = true; // Hide all and keep first basic search
        } else {
            hideAll = false; // Otherwise 
        }  
      
      if (hideAll) {
          start = 0;
      } else {
          // Make sure first basic search is selected
          if (!$('#basicSearchSearchTextQuickSearch').is(':checked')) {
              // otherwise select it
              // $('a[ng-if="searchType"]:eq(1)').parent().click();
              $('#basicSearchSearchTextQuickSearch').click();
              $('lf-basic-search').find('input[type="checkbox"]:first').parent().show();
          }
      }
      
      // Within current folder
      if (includeWithinCurrentFolder) {
          $('lf-within-folder-search select').val("string:2").change(); // enitre repo
          $('lf-within-folder-search').hide();    
      }
      
      // Other basic search 
      for(let i=start; i<=4; i++) {
          if ($('lf-basic-search').find('input[type="checkbox"]:eq('+i+')').is(':checked')) {
            $('lf-basic-search').find('input[type="checkbox"]:eq('+i+')').click(); // unselect
          }
        $('lf-basic-search').find('input[type="checkbox"]:eq('+i+')').parent().hide();
      }
      
      // Date
      $('lf-date-search-quick select').val('string:Anytime').change();
      $('lf-date-search-quick').hide();
      // Template
      $('lf-field-template-search').hide();
      
      // if (includeWithinCurrentFolder || hideAll) $('.quickSearchOptionMenu li.divider:first').hide();
      // if (includeWithinCurrentFolder && hideAll) $('.quickSearchOptionMenu li.divider:eq(1)').hide();
  }, 1000); 
    
}

I understand we might be getting a more official UI to configure search defaults in a future release of Web Client 11.

2 0

Replies

replied on September 23, 2021

Hey @████████ I'd like to get your help on this one.

0 0
APPROVED ANSWER
replied on September 24, 2021

Hey Pieter,

Here's a Custom Action script for Web Client 11 that should do most to all of what you want. @████████because we were discussing this the other day. Credit and thanks to @████████for writing said script.

Result looks like:

// v11
var includeWithinCurrentFolder = true;
var hideAll = false;
if (typeof window.qsearchDisabled == 'undefined') {
  window.qsearchDisabled = true;
  
  fixQuickSearch();      
  
  $('div.searchInputDiv').click(fixQuickSearch);
  $('div.quickSearchFilters').click(fixQuickSearch);
  
  
}
return false;
function fixQuickSearch() {
  setTimeout(function() {
      let start = 1;  
      
        // Is there at least one custom search? 
        if ($('select[ng-model="currentCustomFilter"] option').length>1) {
            // select first if no thing is selected
            if (!$('select[ng-model="currentCustomFilter"]').val()) {
                $('select[ng-model="currentCustomFilter"] option:eq(1)').prop('selected', true);
            }
            
            hideAll = true; // Hide all and keep first basic search
        } else {
            hideAll = false; // Otherwise 
        }  
      
      if (hideAll) {
          start = 0;
      } else {
          // Make sure first basic search is selected
          if (!$('#basicSearchSearchTextQuickSearch').is(':checked')) {
              // otherwise select it
              // $('a[ng-if="searchType"]:eq(1)').parent().click();
              $('#basicSearchSearchTextQuickSearch').click();
              $('lf-basic-search').find('input[type="checkbox"]:first').parent().show();
          }
      }
      
      // Within current folder
      if (includeWithinCurrentFolder) {
          $('lf-within-folder-search select').val("string:2").change(); // enitre repo
          $('lf-within-folder-search').hide();    
      }
      
      // Other basic search 
      for(let i=start; i<=4; i++) {
          if ($('lf-basic-search').find('input[type="checkbox"]:eq('+i+')').is(':checked')) {
            $('lf-basic-search').find('input[type="checkbox"]:eq('+i+')').click(); // unselect
          }
        $('lf-basic-search').find('input[type="checkbox"]:eq('+i+')').parent().hide();
      }
      
      // Date
      $('lf-date-search-quick select').val('string:Anytime').change();
      $('lf-date-search-quick').hide();
      // Template
      $('lf-field-template-search').hide();
      
      // if (includeWithinCurrentFolder || hideAll) $('.quickSearchOptionMenu li.divider:first').hide();
      // if (includeWithinCurrentFolder && hideAll) $('.quickSearchOptionMenu li.divider:eq(1)').hide();
  }, 1000); 
    
}

I understand we might be getting a more official UI to configure search defaults in a future release of Web Client 11.

2 0
replied on September 24, 2021

Thanks, Sam. This is perfect! Honestly wasn't expecting to be able to do it.

1 0
replied on October 17, 2021

Hi

 

This script does work with the following exception:

Upon first authenticating the SEARCH will not work until we toggle between selecting two Quick Searches on the initial search.

At which point the Search works well until we logout and need to reset each time a user authenticates.

Guessing this must set a DEFAULT variable for the Script?

Anyway someone can advise as this is a very disappointing loss of feature set for a customer moving from 10.4 to 11?

Thanks

0 0
replied on March 30, 2022

Thanks for this great script, @Samuel Carson. Could you post a v10 version please?

 

0 0
replied on March 30, 2022 Show version history

I believe this is the script code for Web Client 10 (attached). This one leaves the "Within Current Folder" option available.

1 0
replied on March 30, 2022

You're a star! The customer loves us both (the BA is up so I demonstrated it to him)

1 0
replied on September 5, 2024

Hi Samuel and team,

I found out this script as I'd like to limit the searches in the top search bar to a pre-defined quick search, and this script felt to be just what I needed and I tried to test it as is (without any modifications)

From GUI perspective it works just fine, as it does limit the display of the search options to the pre-definied custom quick searches, with the 1st one preselected, just as in the screen copies above.

However, when I enter a string in the search input and click on the magnifier, or the Search button, nothing happens. But if I select a different quick search in the "Custom Quick Search" dropdown, then the search would start working as expected and returning correct results. At this point, if I select back the first line in "Custom Quick Search" it also keeps working fine.

Any idea why it is doing that and how to make it work properly ? I am using WebClient 11.0.2401.9

Thank you !

 

0 0
You are not allowed to follow up in this post.

Sign in to reply to this post.