Hi,
It be really good if you had code in your demos as it is really hard to work out how you did these things.
https://docs.svar.dev/svelte/grid/samples/#/editors/willow
I did go to the repo and docs but really struggled to get say grid combo to work!
The guide has code the that doesnt work too
https://docs.svar.dev/svelte/grid/guides/integration_with_editor
{
id: "country",
header: "Country",
editor: "richselect",
options: countries,
width: 160,
},
once I defined counteries - had to dig into the repo to find structure.
this just errors with Uncaught TypeError: Cannot read properties of undefined (reading 'getGroup')
same with
https://docs.svar.dev/svelte/grid/guides/configuration/inline_editors#applying-in-built-inline-editors
{
id: "country",
header: 'Country - "combo"',
editor: {
type: "combo",
config: { template: (option) => `${option.id}. ${option.name}` },
},
options: countries,
width: 180,
},
Is there something I am missing?
Edit: updated to version 2.1.2 and
Uncaught TypeError: Cannot read properties of undefined (reading 'getGroup') has gone away!