How to focus a particular date in datepicker??

How to focus a particular date in datepicker??

You can use setValueHere():

//Get new date, dateonly, because I am not using timepicker
var strNew = dtNew.toISOString().split('T')[0];
$$('picker-correction-date').setValueHere(strNew);
$$('picker-correction-date').focus();
// Show the datepicker's selection
webix.html.triggerEvent($$("picker-correction-date").getInputNode(), "MouseEvents", "click");

This code block sets the date of my "Correction date" datepicker field, then sets focus for the user to see the selection and/or change it if they want.

I have modified one of the standard datepicker snippets to illustrate how this works.

https://docs.webix.com/api__ui.calendar_showcalendar.html

showcalender function works for me

Thanks for your time to reply. Here should focus a date but I should not select that.

Here requirement is I have some past dates which I need to focus but I should not select

@mvbaxter Here requirement is I have some past dates which I need to focus but I should not select