Hello,
I am trying to insert a time picker in a grid using the following code.
text: 'Order Date',
datafield: 'orderdate',
editable: true,
columntype: 'datetimeinput',
createeditor: function (row, cellvalue, editor, celltext, cellwidth, cellheight)
{
editor.jqxDateTimeInput({
formatString: 'HH:mm',
showTimeButton: true,
showCalendarButton: false
});
};
My control shows me datepicker only instead of timepicker.
It also gives me an error saying “Invalid Property: showTimeButton”.
Help me to get time picker in my Grid.
Regards,
Jash Kapasi