New Product LaunchBoldDesk: Help desk ticketing software starts at $10 for 3 agents.
Try it for free.
<template>
<div id="app">
<button v-on:click="click()">Properties</button>
<ejs-grid ref='grid' id='grid' :dataSource="data" :allowPaging='true' :pageSettings='pageSettings' :editSettings='editSettings' :toolbar='toolbar'
:allowFiltering='true'>
<e-columns>
. . .
</e-columns>
</ejs-grid>
</div>
</template>
<script>
methods: {
click: function() {
var temp = Object.assign({},this.$refs.grid.ej2Instances.properties);
Vue.delete(temp, 'dataSource'); // her we have removevd the dataSource. You can also keep only required properties
console.log(temp);
}
},
provide: { |