Questions tagged as 'filtro'

3
answers

How to create a filter from the words / phrases of interest to filter a certain vacancy from a "List"?

In my example I have two classes that are SetorInteresse and Vaga , below follows the structure of the two: Sector Class Interests: public class SetorInteresse { private List<String> setores; public SetorInteres...
asked by 12.09.2016 / 03:09
3
answers

Select with WHERE condition with multiple values in the same column

I have two tables in my bank and I do the JOIN with them. One table is a list of people and the other list that person's characteristics. By logic there is only one person and each person can have several characteristics, so two tables. So when...
asked by 01.05.2018 / 17:02
2
answers

Filtering records of a String Array by space-separated words in Java

How do I filter the records of a Array by using the search terms separated by spaço ? Example: I have a% of String% with the following records. bottle opener box with blue padlock 30mm brass padlock with 03 keys 100mm scre...
asked by 07.05.2015 / 20:34
1
answer

How to create default filters with entity framework 6?

I have an Exclude field in several classes and when I go to do my select I always have to impose this condition in the query, is there any way to do the filter implicitly? remembering that it is EF 6. var consulta = this.Contexto.Set<Client...
asked by 18.12.2017 / 19:09
1
answer

How do I have two or more dynamic filters in the same Javascript product group? [closed]

The code works on the first filter but when I choose the second filter it performs a new search and ignores the first one. How do I make the filters work simultaneously. Follow the code $(document).ready(function(){ $("#filtr...
asked by 11.01.2016 / 19:42
1
answer

Filter by date in list (Django)

Imagine that I have a list and a form to filter this list by date. Does anyone have an example of how to do this filter in form? I got this here in the shell, but I do not know how to implement it in the form, in the template. $ ./...
asked by 26.10.2015 / 01:15
2
answers

Displaying filter from another view

I have View where the customer data is shown, and when you click a button, the user is redirected to a page that shows the movements of several clients, so that page contains some filters. So what I need is that when that client clicks on...
asked by 07.02.2017 / 19:22
1
answer

How to get objects from an array, with filter passing as parameter an object with multiple ID's

Associating the "categories" object in "products"; With the IDs that I need to associate with such a product, so for example "products 1" should receive the "categories" with the ID [1, 3, 4]. creating another array by combining the data between...
asked by 23.10.2014 / 23:06
1
answer

Implement the Filter Access Control - JSP

Can you help me implement a filter access control in java? This was the implementation I tried to do so far, but I could not get it to work. public void doFilter(ServletRequest request, ServletResponse response, FilterChain chai...
asked by 17.05.2016 / 18:01
4
answers

If no where condition SQL Server

I have a Stored Procedure where I need to do a check for a date filter, if the start date is null I have to do in WHERE to get all records smaller than the end date, otherwise I make BETWEEN between dates. Example If...
asked by 15.11.2018 / 12:26