1
I have a role in controller
that returns me one JSON
, who picked up a JQuery
and mount my page. I, store her return in a Session, as below:
SessaoUtil.SalvarSession("PegaHotelPacote", package.Buscar((SessaoUtil.Recuperar("sessionId") != null ? SessaoUtil.Recuperar("sessionId").ToString() : ""), tbSearch));
Now, after the generated result, I have some filters that I need to make work. I need now, to search in this Sesssion. Type: The result brought me 10 htéis, with their prices, qde rooms and etc... Well, I now want to search Hotel Melia, for example, through a textedit on my page. All this in jquery, people. How would I do that? I called this field txtNomeHotel
, in accordance with HTML
below: Everything is in one Jquery
, I just picked up the field because otherwise would be extremely great the post of this forum.
<div class="select-group">;
<input name="txtNomeHotel" placeholder="nome do hotel" />;
</div>;
thanks Eduardo. How do I put tags? Before it came automatic, but now how do I do?
– pnet