Questions tagged [quick-search]

"Quick search" is a basic search function in UI meant to be quicker and easier to use than regular search. Typically, it can only search a limited area by substring and often immediately shows the result as the user types the search terms.

60 questions
2
votes
1 answer

How to define a context to search with jquery Quicksearch?

I'm having a problem defining a context for the plugin to search. The thing is, i have multiple input-texts (the user can add more and more from a button) and i'm doing something like this: $('.inp_txt').quicksearch('ul.myList li'); For each…
Rafaelius
  • 45
  • 4
1
vote
0 answers

Can I run Quick Search Box from AppWidget

I have program with search interface. Search works well from activity(when I call onSearchRequested()) or from Quick Search Box when hardware search button was pressed. But how can I run Quick Search Box from AppWidget?
1
vote
1 answer

Resorting ISOtope elements after Search

I'm developing a new Hall of Fame for the Wisconsin Badgers. My beta version is viewable at http://www.uwbadgers.com/athletic-dept/hall-fame-beta.html My question is, when the search feature is used how do I bring the visible elements to the top. It…
SPillai
  • 177
  • 3
  • 7
  • 20
1
vote
0 answers

multiple selection and quick search

I have 2 different problems. I am trying to operate with Multiselect and quicksearch. The first problem is that although I specify a limit, when I select with optgroup, it can select all except the limit I gave. 2. My problem is that the search with…
1
vote
1 answer

Populating Quick Search Box via a web service

I am thinking of supporting Quick Search Box in my Android app. I would take what the user has typed and run a query on a remote server via web services. Is this pattern efficient enough or is it expected that any data I am querying should be…
Keith Adler
  • 20,880
  • 28
  • 119
  • 189
1
vote
1 answer

Quick Search do not retrieve "can not find" recently added records

I am working on CRM dynamics 2015, recently we became unable to find contacts that are created recently on CRM via "Quick Search", but we manage to find them with "Advanced search". in the other hand the contacts that existed already existed are…
1
vote
2 answers

Jquery table search with pagination

I am using quicksearch and tablesorter.pager Jquery plugins on a table of data. I can get quicksearch to filter results on a single page, not all the data across all pages. I wondered if anyone else had solved this problem using these or any other…
eli
  • 4,636
  • 7
  • 25
  • 29
1
vote
1 answer

In PyCharm, when searching a list by typing, how to jump between search results?

In PyCharm, in any window featuring a list, I can start typing a substring, and this instantly brings me to the first list element that has that substring: Now, how can I jump to the next search result (i.e. the next element matching the…
ivan_pozdeev
  • 33,874
  • 19
  • 107
  • 152
1
vote
0 answers

Boyer - Moore string search into Sunday string search (quick string search) c++

I want to turn my Boyer - Moore algorithm into a Sunday (Quick Search). Currently I have a working version of the Boyer - Moore string search algorithm: vector table(256); fill(table.begin(), table.end(), -1); for (int i = 0; i <…
1
vote
1 answer

How to put another button in android quick search box?

i'm using android qsb feature in my app. Qhen user click len button on hes keyboard, i open quick search box with one input box and one button. I want to know if i can add another button in qsb. I think it is possible, Google has added search by…
Premier
  • 4,160
  • 6
  • 44
  • 58
1
vote
2 answers

setTimeout and e.preventDefault

I have two events listening on a unique field: autocomplete and onPaste. My goal is to call another logic on paste, and use the autocomplete on typing. I did this in the following way: $("#refno").on('paste', function (e) { setTimeout(function…
Milos Cuculovic
  • 19,631
  • 51
  • 159
  • 265
1
vote
0 answers

Search suggestions causing inconsistent behavior in application after triggered from Quick Search Bar

I'm running into an issue with the Quick Search Bar that I'm hoping someone can help me with. My application includes a Searchable activity used to provide search behavior within my application. That search activity is designed to trigger a…
BillyK
  • 11
  • 3
1
vote
0 answers

Quick search box for Contacts in Android

I want to create a quick search box to search contacts. when a word is typed in search box then it gives list of contacts which are matches with that word.
1
vote
2 answers

The median of an unordered set

I am a compsci student, and I received the following problem in Analysis & Design II class: The median of an unordered set is an element such that the number of elements less than the median is within one of the number of elements that are…
1
vote
1 answer

jQuery quicksearch plug-in tinkering with JSON

I've implemented the quicksearch plugin by Rik Lomas and I love it for an application in a custom CMS I'm building. I was wondering though, since I'm going to have a bizillion items in the table if there's a way to use the data from my json…
jay
  • 10,275
  • 5
  • 34
  • 52