I have a case there I want to select Month and Day from the UI to create recurring task.No need to select a year.28 days should be displayed in February.I am using Bootsrap for building the UI.I am initially thought of considering below option for implementing the same
Create one Dropdown where All the Months will be displayed (ie Jan,Feb,Mar..Dec)
Create another dropdown for loading Days.(1,2...31). This dropdown should be reloaded based on Month selection.
Is it possible to do the same using Tempus-Dominus Datetime picker ?? https://getdatepicker.com/5-4/
I have created sample fiddle .Where i want display similar like (Mar - 31) after selecting. Year should not be there in DateTimepicker.(By default consider Year as 2022.But it should not be displayed anywhere in Datetimepicker.)
$('#datetimepicker1').datetimepicker({
format: 'MM-DD'
});
https://jsfiddle.net/8ck1tanb/1/
Can anyone suggest better user friendly design/approach for implementing this functionality. It will be more helpful if you can share sample code if it is already implemented.