I want to get the cell row index in the handleRemove function.
<div class="datagrid-toolbar">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td><LinkButton iconCls="icon-add" :plain="true" @click="handleRemove">删除数据</LinkButton></td>
</tr>
</tbody>
</table>
</div>
<DataGrid>.....</DataGrid>
methods: {
handleRemove() {
// get cell row index
}
}