EasyUI Forum

General Category => EasyUI for jQuery => Topic started by: Coder on August 25, 2019, 08:32:23 PM



Title: [SOLVED] easyui-datebox key shortcut for open calenar?
Post by: Coder on August 25, 2019, 08:32:23 PM
Do easui-datebox (datetimebox) have Shortcut for open Calendar?

If not : How assign key shortcut to open calendar in datebox ot datetimebox ?
It can be evented only if focus in this input


Title: Re: easyui-datebox key shortcut for open calenar?
Post by: jarry on August 28, 2019, 02:00:48 AM
Attach an input event to the datebox to display the calendar panel when press the DOWN ARROW key.
Code:
$('#db').datebox({
inputEvents: $.extend({},$.fn.datebox.defaults.inputEvents, {
keyup: function(e){
if (e.which == 40){
$(e.data.target).datebox('showPanel')
}
}
})
})


Title: Re: easyui-datebox key shortcut for open calenar?
Post by: Coder on September 04, 2019, 05:43:16 PM
Thnx!