Hi,
We use this control in our project, everything is good in one place, but in another place columns in data grid cannot be resize, the width of columns can't be changed, we are trying to fix this, but can't find solution, does the control have any requirement for resizing? the code is like below
Another question, is there any callback after filter columns, we need to show rows number after filter?
Thanks,
CZ
[App.vue]
<script>
import { GridPlugin, Sort, Filter, Resize } from "@syncfusion/ej2-vue-grids";
export default {
---
provide: {
grid: [Sort, Filter, Resize]
}
}
</script>
|
[App.vue]
<template>
<div id="app">
<ejs-grid
:columns = "pipelinevpcolumns"
:dataSource = "pipelinevpList"
---
:actionComplete="actionComplete"
/>
</div>
</template>
<script>
export default {
---
methods: {
actionComplete: function(args){
if(args.requestType == "filtering"){
// do your action hear
console.log(args);
}
}
},
}
</script>
|
Hi Rajapandiyan S,
It works, thank you for the support always!
Thanks,
CZ