| 
					 Title: avoid focus on textbox, numberbox... etc Post by: roberto on February 12, 2022, 10:52:54 AM how to prevent textbox from being focused when tab key is pressed? 
					Title: Re: avoid focus on textbox, numberbox... etc Post by: jarry on February 14, 2022, 06:49:17 PM Please set the 'tabindex' with '-1' for the textbox component. 
					Code: <input class="easyui-textbox" label="First Name:" labelPosition="top" tabindex="-1" style="width:100%;"> Title: Re: avoid focus on textbox, numberbox... etc Post by: roberto on February 14, 2022, 07:56:01 PM so simple! thank you so much! 
					it worked for textbox, numberbox... but not for checkbox and radiobutton  |