Our blazing fast Grid component built with pure JavaScript


Post by Stormseeker »

I'm trying to change the default selectionMode for the Vue 2 grid wrapper. It seems to work fine but on creation and after selecting a row, I'm seeing this in the console.log:

BryntumGridComponent development warning!
"selectionMode" is a static config option for component constructor only. No runtime changes are supported!
Please check integration guide: https://www.bryntum.com/docs/grid/#guides/integration/vue.md

Is there another way I'm supposed to set this value? My code looks like this:

<bryntum-grid
    ref="pgridwrapper"
    :columns="gridColumns"
    :data="orderData"
    :store="storeConfig"
    :selection-mode="{ row: true, checkbox: true, multiSelect: false }"
    :min-height="835"
    :row-height="36"
    :enable-text-selection="true"
    :animate-removing-rows="false"
/>
    "@bryntum/grid": "4.2.1",
    "@bryntum/grid-vue": "4.2.1",

Post by Maxim Gorkovsky »

Hello.
I couldn't reproduce this problem. Could you please provide a runnable test case?


Post Reply