Toni Heinonen

Results 9 comments of Toni Heinonen

I am having the same problem. Is there any way to fix this?

Why do I need to set the `key` for custom columns but not for normal columns: ```vue ``` If I remove the key="phone", the whole column disappears. I have been...

> May you share your `CustomColumn` component code here? I am trying to achieve same, but for some reason it just doesn't work :( I just copied the code from...

> I managed to make a custom column component inside a **custom** table component work after > > 1. Applying the following patch (use [`patch-package`](https://github.com/ds300/patch-package) or pnpm): > > ```diff...

Why was this removed from 3.53.0 milestone? Is this now fixed? We have been waiting for a fix to this for months now, please don't tell me that this is...

I believe that I have found a working solution for the Column wrapper: ```Vue import Column, { type ColumnProps, type ColumnSlots } from 'primevue/column'; import { computed, useSlots } from...

> I managed to make a custom column component inside a **custom** table component work after > > 1. Applying the following patch (use [`patch-package`](https://github.com/ds300/patch-package) or pnpm): > > ```diff...

> Mocking `$primevue` could help: > > ``` > import { config } from '@vue/test-utils'; > import { defaultOptions } from 'primevue/config'; > > config.global.mocks['$primevue'] = { > config: defaultOptions...

> I managed to fix this with (`vitest.setup.ts`): > > ``` > beforeAll(() => { > ... > vi.mock('primevue/config', async (importOriginal) => await importOriginal()); > > }); > ``` That...