Hi.
I'm using a searchbox as a continuous filter box.
I mean: On every key typed in the searchbox the content's datagrid is filtered.
I need to resolve two issues:
1) How to bind a keyup function to searchbox?
This is the searchbox
<input id="inpSearch2" class="easyui-searchbox" style="width:250px"
data-options="prompt:'Tecleé aquí lo que deseé filtrar.'"></input>
I have tried this:
$('#inpSearch2').searchbox('textbox').keyup(function () { lk2_filtroLocal(this,'dg'); });
and this:
$('#inpSearch2').bind('keyup',function(){alert('hola')});
with no luck.
2) How to get the searchbox button (magnifier glass) to disable it?
Please can you help me?
MTIA.