Hello :D, jqxTeam.
I have one textbox with jqxDateTimeInput. I want to change it’s format on calendar.
If I click calendar button, it should show year and month buttons.
But When I click calendar button, it shows every year, month and date.
I want just show year, month button.
When I use this with jquery datetimepicker, I did it’s calendar css part to display none.
.ui-datepicker-calendar {
display: none;
}
What about jqxDateTimeInput? How can I change the calendar form not just input part?
This is my code.
$txtDate.jqxDateTimeInput({
width: '100px',
height: '25px',
formatString: 'yyyy-MM',
culture: 'ko-KR'
});
and you can see my trying result here