I have a jqxgrid with a date filter, but I don’t see the feature to enter from and to date. it’s only able to select a single date for the filter. is this because of using an old version of Jqwidget or is that feature enabled in the current using version?
Using Version : jQWidgets v4.5.0 (2017-Jan)
$("#supplierPaymentTreeGrid").jqxGrid(
{
width: '100%',
source: dataAdapter,
pageable: false,
autoheight: false,
sortable: true,
enabletooltips: true,
editable: true,
showfilterrow: true,
filterable: true,
theme: 'metro',
selectionmode: 'singlecell',
columns: [
{ text: 'Document Number', dataField: "TransactionId", align: 'center', cellsAlign: 'center', editable: false, width: '15%', columntype: 'textbox', filtertype: 'input' },
{ text: 'Transaction Date', dataField: "TransactionDate", align: 'center', cellsAlign: 'center', editable: false, width: '15%', cellsformat: 'D', filtertype: 'date' },
{ text: 'Ex Rate Variation', dataField: "ExchangeRateVariation", align: 'right', cellsAlign: 'right', editable: false, cellsformat: 'D2', width: '15%', filtertype: 'number' }
]
});