Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当 DataGrid 中的数据重新充电或呈现时会触发什么事件?
例如,显示过滤搜索结果的 DataGrid。每次使用不同的过滤器单击“搜索”按钮时,DataGrid 的结果(行数)都不同。
你想做什么?您可以像这样在每个列上添加渲染器:
{ text: 'ChangedCaption', dataIndex: 'myBoolean', renderer: function (value, metaData, record, rowIndex, colIndex, store) { if (value == true) { return 'Y' } else { return 'N' } } },