Questions tagged as 'filtro'

1
answer

Problem with Uppercase and Lowercase in Angularjs

Personal follow the example of a script on stackoverflow.com as follows the link below: [link] I happen to be having problems with words that are capitalized eg a word that is "Protocol" and I type "protocol", the filter does not find it....
asked by 31.01.2015 / 23:35
2
answers

Filter select fields using the value of other selects with Ruby on Rails

Good afternoon, I have a problem to solve here in my application. The problem is to filter the HTML "Solution" select field, based on the values of the other selects fields above it. The image shows an example of these fields. Currently,theappl...
asked by 07.08.2017 / 17:43
1
answer

How to filter a json object with jQuery?

I have the following json object: var json = { "tpAmbiente":null, "hotelPesquisa":[ { "dtEntrada":"20170510", "dtSaida":"20170511", "hotel":{ "id":94, "nome":"Itamarati" }...
asked by 08.05.2017 / 18:55
2
answers

LIKE does not work together with BETWEEN

Something wrong with this query? All data is displayed without any filtering. But when I shoot the LIKEs it works or if I take the BETWEEN and leave the LIKEs it works. One only works without the other. Why? $produto =...
asked by 02.08.2016 / 23:11
2
answers

How to return to the previous page by the HandleErrorAttribute?

I'm trying to implement a global filter for error handling and started testing as follows: public class MyHandleErrorAttribute : HandleErrorAttribute { public override void OnException(ExceptionContext filterContext) { var exce...
asked by 24.09.2015 / 15:57
3
answers

Make a copy of a filtered worksheet in excel vba

I'm having a problem, I need to extract a data listing from excel that I've filtered with over 200 thousand lines, I have the option to do the excel parse every line and delete it but I wanted to do this without losing the Given already present...
asked by 13.03.2015 / 13:49
1
answer

How to configure NSPredicate to perform filtering?

I'm implementing a filter, where I need to search the records in Core Data, which have "yes" in certain columns. Table: Forexample,returningtheelementsthathaveyesinthecolumnsATTRIBUTE1,ATTRIBUTE3,andATTRIBUTE5InthisexampleIwouldreturnthere...
asked by 26.02.2015 / 17:50
1
answer

Use filter_input (FILTER_SANITIZE_NUMBER_INT) in an array with integer type items

I have the following form: <form action="<?=PATH_ROOT?>professor/cadastrar" method="post"> Matrícula: <input type="text" name="matricula"> <br><br> Nome: <input type="text" name="nome"...
asked by 07.12.2014 / 15:02
1
answer

Filter with Node.JS

I have a list of saved items in a Mongo collection, I'd like to know how to filter the original array. Follow the code api.filtra = function (req, res) { model.find() .then(function(itens) { for(i = 0; i < itens.leng...
asked by 03.09.2017 / 07:42
1
answer

Filter passes before the login servlet

Good evening, I have a question, I do not even know if I need to post the code to solve it. The filter is being called before the login servlet, ie the user is never logged in. How do I get the servlet called before? Remembering that I do...
asked by 30.05.2017 / 23:05