I have a basic grid that has a date range box to filter. Is there a way to allow keyboard input in that date range box? I know you can use the keyboard on the regular date picker, but it doesn’t allow you to type if its set to range. It would be handy for users to be able to type the two dates manually in the box, especially if they are many years apart. Below is my bit of code:
{ text: ‘Date Range’, datafield: ‘StartDate’, filtertype: ‘range’, cellsalign: ‘center’, width: 175, renderer: columnsrenderer, columntype: ‘datetimeinput’, cellsformat: ‘MM/dd/yyyy’ },
Thanks!