Hi there,
I was running into an issue where a grid embedded in my app wouldn't sort. I've now created a super simple test page and am still getting the same issue. Here's my test Vue component:
<template>
<ejs-grid :dataSource="data" :allowSorting="true">
<e-columns>
<e-column field="name" headerText="NAME"></e-column>
</e-columns>
</ejs-grid>
</template>
<script>
export default {
data: function() {
return {
data: [
{ id: 5, name: 'Terry' },
{ id: 7, name: 'Ben' },
{ id: 15, name: 'Nancy' }
]
}
}
}
</script>
I've also updated to the latest Syncfusion version of the grids library (18.4.32) with not change. Tapping on the column heading does nothing.
Any ideas what could be wrong?
Jason