Questions tagged [advanced-search]

The advanced search is a search using specific parameters which allows to receive results that are more accurate (than the simple search)

The Advanced search is a search using specific parameters (options and filters) which allows to receive results that are more accurate than the simple search.

148 questions
8
votes
2 answers

MySQL Select Column if Not Null only

I have this mysql code: SELECT firstname, lastname, age, gender from persons WHERE id = 1; Display: > firstname: Marlon > > lastname: Null > > age: 26 > > gender: male What I want to do is: SELECT IF NULL DONT SELECT(firstname), IF NULL DONT…
Marlon Buendia
  • 342
  • 1
  • 6
  • 19
7
votes
3 answers

Advanced Search Using Hibernate Search

In one of my applications, I am to execute a search on multiple fields/columns. Its an Advanced Search and there are over 20 fields using which a user can search for results. For example, a user can search for bookings based on Booking Id Passenger…
SB.
  • 1,887
  • 2
  • 19
  • 31
4
votes
3 answers

How can I reset addAttributeToFilter in Magento searches

I'm having problems getting the addAttributeToFilter function within a loop to behave in Magento. I have test data in my store to support searches for all of the following data; $attributeSelections=array( array('size' => 44, 'color' => 67,…
Bobby
  • 120
  • 1
  • 1
  • 6
4
votes
1 answer

Advanced Search Option in Solr corresponding to DtSearch options

We are replacing the search and indexing module in an application from DtSearch to Solr using solrnet as the .net Solr client library. We are relatively new to Solr/Lucene and would need some help/direction to understand the more advanced search…
koder
  • 887
  • 9
  • 29
3
votes
3 answers

Search any word in string mongodb with node js

I want to create advanced search in project that is in Node JS with Mongo DB. I have created a field in DB that is search-key. user can type any word in text box and i want to match in this word in string and fetch the result. below my db structure…
Pritesh Mahajan
  • 4,974
  • 8
  • 39
  • 64
3
votes
1 answer

Equivalent of Select Where In with Outlook DASL Filter

I am searching a list of mails from their respective PR_MESSAGE_ID using the Outlook VSTO AdvancedSearch feature. My query looks like http://schemas.microsoft.com/mapi/proptag/0x1035001E = 'targetId1' OR …
Benoit Patra
  • 4,355
  • 5
  • 30
  • 53
3
votes
1 answer

Alfresco share advanced search

I have some problem. I am create custom model ed:edocumentswith one aspect ed:zagdep it has one property ed:documentRegnum. I am customize Advanced Search Form and add RegNum field, but it does not search nothing with this field. What it can be? Why…
Tackle Berry
  • 113
  • 8
3
votes
1 answer

Rails 4 search over several models in separate controller

I'm trying to implement a complex search over a model in a separate controller. I have a pupils model. The whole app has a front page handled by a separate main_controller which has no model. The main_controller and its related index view are…
mandulis
  • 133
  • 1
  • 8
3
votes
1 answer

HTML Advanced Search - Header part

Any idea or website to check out for search box on the header part of the website and a arrow or button to open a div to slide down to show advanced search option with some fields to search upon. I know it's pretty simple but want to see and develop…
GOK
  • 2,338
  • 6
  • 34
  • 63
3
votes
2 answers

All parents of a node in BST?

While printing Binary Search Tree(BST) using recursive function (pre-order). I need to print all the parents(path form root) of current node. An auxiliary data structure can(e.g. path in my code) be use but I don't want to keep node->path to store…
Grijesh Chauhan
  • 57,103
  • 20
  • 141
  • 208
2
votes
0 answers

How do I create an Advanced Search like in Image with multiple filters & Queries in React JS?

I'm trying to create an Advanced Search functionality which can take Multiple Queries at a time in React JS. JIRA & GITLAB have similar functionality available. Please look at the images below. This is present on Atlassian JIRA This is present on…
2
votes
1 answer

Search by Email address with urn:schemas

I found this code from Ricardo Diaz. It runs through. I would like to search for the latest email I received or sent to a specific email address as opposed to search by subject. I replaced searchString = "urn:schemas:httpmail:subject like '" &…
Rainer Ott
  • 21
  • 2
2
votes
3 answers

SuiteTalk Advanced Search Examples

I've only worked with NetSuite and SuiteTalk for less than one year. I've found examples of basic searches and advanced searches that leverage saved searches, but I had a hard time finding examples of how to perform an advanced search from scratch…
Kevin M
  • 189
  • 2
  • 10
2
votes
1 answer

Angular advanced searchbox doesn't display suggestedValues

I use Angular advanced searchbox to create a search box.But when adding suggestedValues into scope availableSearchParams it doesn't display suggestions and my modal get undefined.Please let me know what went wrong. Scripts load…
gihan-maduranga
  • 4,381
  • 5
  • 41
  • 74
2
votes
1 answer

How to add custom search field in magento from product attribute

I wanted to add custom search option with following fields , search text,brand name (combo box) attribute and search button.On click of search button need to display search results.Need help on how to do this.
1
2 3
9 10