您好,因为您外部有一个namespace,所以在设置typename时需要将namespace一并加入
将您的代码
customCellTypes.DateCellType = function(dataFrmt) {
this.dataFrmt = dataFrmt;
this.typeName = "dateCellType"
}
改为
customCellTypes.DateCellType = function(dataFrmt) {
this.dataFrmt = dataFrmt;
this.typeName = "customCellTypes.DateCellType"
}即可。 |