EasyUI Forum

General Category => General Discussion => Topic started by: thiago_brum on April 04, 2016, 07:12:07 PM



Title: Numberbox Focus
Post by: thiago_brum on April 04, 2016, 07:12:07 PM
How can i set numberbox focus?
I tried:

<input class="easyui-numberbox" id="cod_pessoa" name="cod_pessoa" style="width:150px">

$('#cod_pessoa').numberbox('clear').focus();

But ins't work.


Title: Re: Numberbox Focus
Post by: jarry on April 05, 2016, 12:15:45 AM
Please call 'textbox' method to get the inputing box and set focus on it.
Code:
$('#cod_pessoa').numberbox('clear').numberbox('textbox').focus();


Title: Re: Numberbox Focus
Post by: thiago_brum on April 05, 2016, 10:49:21 AM
it's works. thanks!