下面代码中的init方法,前后都没有调用,但是却的确产生了作用,这是为什么,是aggrid自带的方法,这只是重写么
// 请把代码文本粘贴到下方(请勿用图片代替代码)
// gets called once before the renderer is usedDatepicker.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' }); };
相关分类