I have a Grid that has two Date field columns. I've implemented filters for both columns as shown below. I'd like to assign an ID to the 4 datepickers that are created to be able to reference them later.
field: "issuedDate",
title: "Issued Date",
template: '#= kendo.toString(new Date(issuedDate), "MM/dd/yyyy HH:mm" ) #',
width: "140px",
filterable: {
ui: "datepicker",
//extra: true,
operators: {
date: {
gte: "From",
lte: "To",
}
},
messages: { "info": "Issued Date From -> To " },
}
field: "receivedDate",
title: "Received Date",
template: '#= kendo.toString(new Date(receivedDate), "MM/dd/yyyy HH:mm" ) #',
width: "140px",
filterable: {
ui: "datepicker",
operators: {
date: {
gte: "From",
lte: "To",
}
},
messages: { "info": "Received Date From -> To " },
}