我已经在地址标题列中将这些代码行用于附加的图像文本区域。
````````
"headerName: "Address",
field: "Address",
width: 350,
**cellEditor: 'agLargeTextCellEditor'**
````````````
但是“ agLargeTextCellEditor”的限制是它只能接受200个字符。但我的要求是不超过500个字符。那么我们可以在ag-grid中使用任何自定义单元格编辑器吗?或其他替代解决方案?
[注意:我知道你们中的一些人会建议我使用“ agRichSelectCellEditor”,但是它仅在ag-Grid Enterprise中可用,所以我不能使用它。
agLargeTextCellEditor的文档说,字符数以及行和列数是可配置的。默认的“ maxLength”为200,但您可以提供自己的值。
我还没有尝试过,但是从文档中看来,您应该将columnDef修改为:
{
headerName: 'Address',
field: 'Address',
width: 350,
cellEditor: 'agLargeTextCellEditor'
cellEditorParams: {maxLength: 500}
}