问题描述下面代码中的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'
});
};你期待的结果是什么?实际看到的错误信息又是什么?
添加回答
举报
0/150
提交
取消