I’m attempting to create a grid that has a column of date range selectors.
columntype: ‘datetimeinput’,
initeditor: function (row, cellvalue, editor) {
editor.jqxDateTimeInput(
{
selectionMode: ‘range’,
dropDownHorizontalAlignment: ‘right’,
formatString: “MMM dd yyyy”
});
Almost works. It gives me the popup calendar with date range selection, but after the second date is selected the cell only displays the second date not the range. Is there a way to do this? I’d prefer to do the range in one cell instead of doing a start cell and an end cell if possible.