problem description
initaggrid
the environmental background of the problems and what methods you have tried
related codes
/ / Please paste the code text below (do not replace the code with pictures)
// gets called once before the renderer is used
Datepicker.prototype.init = function(params) {
// create the cell
this.eInput = document.createElement("input");
this.eInput.value = params.value;
// https://jqueryui.com/datepicker/
$(this.eInput).datepicker({
dateFormat: "dd/mm/yy"
});
};