如何显示ag-grid行的行数?
我尝试钩住modelUpdated
事件,但该事件未调用。
我想在页面加载和每行更改时显示行数。
<ag-grid-vue
style="width: 700px;height: 500px;margin:20px 0;"
class="ag-theme-balham"
:enableCellChangeFlash="true"
...
rowHeight="55"
:modelUpdated="onModelUpdated"
></ag-grid-vue>
答案 0 :(得分:1)
在vue
中,将@
用于事件,而不将:
以下代码有效:
<ag-grid-vue
style="width: 700px;height: 500px;margin:20px 0;"
class="ag-theme-balham"
:enableCellChangeFlash="true"
...
rowHeight="55"
@modelUpdated="onModelUpdated"
></ag-grid-vue>
onModelUpdated(event) {
const rowsCount = event.api.getDisplayedRowCount();
}