I have tiggzi datepicker component on my page (input and button, pressing which we can see the calendar). I want calendar to be shown always. Not only onclick, but on page load.
I have tiggzi datepicker component on my page (input and button, pressing which we can see the calendar). I want calendar to be shown always. Not only onclick, but on page load.
Hello! Working on it. I'll update.
You should add the following code on pageShow event (not Load event)
code$("[dsid=datePickerName] .datepickeropenbutton").trigger("click");/code
where datePickerName - datePicker component name
Alright, thanks, works perfect!