I have a function in controller
that returns me a JSON
, which I get in a JQuery
and I 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 to now, search this session. Type: The result has brought me 10 htéis, with its prices, qde rooms and etc ... Well, I now search the Hotel Melia, for example, through a textedit on my page. All of this in jquery, folks. How would I do that? I called this field of txtNomeHotel
, as HTML
below: Everything is in a Jquery
, I just took the field, otherwise it would be extremely great the post of this forum.
<div class="select-group">;
<input name="txtNomeHotel" placeholder="nome do hotel" />;
</div>;