ParamQuery grid support forum
General Category => Help for ParamQuery Pro => Topic started by: Digitalsoft on July 13, 2021, 03:14:46 pm
-
Hi Paramquery,
I have a column which is of type date & it is editable, we initialized the column editor as per in the documentation, just provided the format as "dd/mm/yy" for the column as well as "dateFormat" attribute in the datepicker, The issue here is i can select a date from the datepicker but when focus out the editor the selected date is not binding in the grid cell. I have put the value in the console, it is "undefined". Please find the attachements for better clarity.
-
Hi Paramquery, any update on this issue?
-
Please check this example: https://paramquery.com/pro/demos/editing_custom format: 'dd/mm/yy' can be used for OrderDate column.
Point to be noted is that editor.getData has to be implemented to convert from column format into native js 'mm/dd/yy' format.
editor: {
type: 'textbox',
init: dateEditor,
getData: function (ui) {
//convert from column format to native js date format "mm/dd/yy"
var dt = $.datepicker.parseDate(ui.column.format, ui.$cell.find("input").val());
return $.datepicker.formatDate("mm/dd/yy", dt);
}
},