Hello jfritsch123,
If you mean getting the object of a jqxDateTimeInput cell editor, you can access it in the column createeditor callback function. Here is an example:
{
text: 'Ship Date',
datafield: 'date',
columntype: 'datetimeinput',
width: 110,
align: 'right',
cellsalign: 'right',
cellsformat: 'd',
createeditor: function(row, cellvalue, editor, celltext, cellwidth, cellheight) {
editor.on('valueChanged', function(event) {
alert('New date: ' + event.args.date);
});
}
}
Best Regards,
Dimitar
jQWidgets team
http://www.jqwidgets.com/