Focal Point Banner


As of December 1, 2020, Focal Point is retired and repurposed as a reference repository. We value the wealth of knowledge that's been shared here over the years. You'll continue to have access to this treasure trove of knowledge, for search purposes only.

Join the TIBCO Community
TIBCO Community is a collaborative space for users to share knowledge and support one another in making the best use of TIBCO products and services. There are several TIBCO WebFOCUS resources in the community.

  • From the Home page, select Predict: WebFOCUS to view articles, questions, and trending articles.
  • Select Products from the top navigation bar, scroll, and then select the TIBCO WebFOCUS product page to view product overview, articles, and discussions.
  • Request access to the private WebFOCUS User Group (login required) to network with fellow members.

Former myibi community members should have received an email on 8/3/22 to activate their user accounts to join the community. Check your Spam folder for the email. Please get in touch with us at community@tibco.com for further assistance. Reference the community FAQ to learn more about the community.


Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     [SOLVED]Search Settings on search control

Read-Only Read-Only Topic
Go
Search
Notify
Tools
[SOLVED]Search Settings on search control
 Login/Join
 
Silver Member
posted
I have a html page with double list boxes for users to select parameters. I have added a search control for some of the list boxes. I want to locate the Search Settings so that I can set the default to "Instant Search". I've searched on Focal Point and documentation and haven't been able to find it.

This message has been edited. Last edited by: wlwright1,


8.1.0.4
Windows 7
Excel, AHTML, HTML,PDF
 
Posts: 41 | Location: North Carolina | Registered: September 14, 2012Report This Post
Master
posted Hide Post
I don't know what data your have loaded, but try using wild cards on the end. For example: "issues*", without the quotes.



- FOCUS Man, just FOCUS!
-----------------------------
Product: WebFOCUS
Version: 8.1.04
Server: Windows 2008 Server
 
Posts: 578 | Registered: October 01, 2014Report This Post
Silver Member
posted Hide Post
Here is a picture of the control I am talking about. Let's say for example using the car example that I have bodytype of the cars dataset. I want it to when I start typing sedan it brings up those results instantly.

http://imgur.com/p1nHHGN


8.1.0.4
Windows 7
Excel, AHTML, HTML,PDF
 
Posts: 41 | Location: North Carolina | Registered: September 14, 2012Report This Post
Silver Member
posted Hide Post
This is how we ended up fixing the issue in case anyone wants to use this.Used a jQuery function to set it on page open. We then added the s-criteria-page as a class on the html page.

 $(document).ready(function() {
   //check the Instant search option in every double list box that has paging controls

   //check if the document is really loaded by looking for the page's class every 5 seconds
   //when it's found, check the "Instant Search" checkboxes on all the page controls for double list boxes
   var intervalId = setInterval(function() {
        if($('.s-criteria-page').length) {
            clearInterval(intervalId);
            $('.IBI_SPControlLocal.m-navigator table tr:nth-child(4) input').prop('checked', true);
        }
    }, 5000);
    //try this a max of 60 seconds
    setTimeout(function() { clearInterval(intervalId); }, 10000);
});
 


8.1.0.4
Windows 7
Excel, AHTML, HTML,PDF
 
Posts: 41 | Location: North Carolina | Registered: September 14, 2012Report This Post
  Powered by Social Strata  

Read-Only Read-Only Topic

Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     [SOLVED]Search Settings on search control

Copyright © 1996-2020 Information Builders