HC
HC
Could you please provide more details like screenshots or gifs?
please provide an example of the element if possible.
Thank you for your PR, but I think this feature is duplicated with [Class name customization](https://hc200ok.github.io/vue3-easy-data-table-doc/features/class-name-customization.html) feature.
Actually, you can use headers in `item-slot` directly like: ```vue {{ getDirectoryName(item.name, headers) }} ``` If you need `header` column, I think you already got the value: ```vue {{ getDirectoryName(item.name,...
Please update to the latest version `1.5.41`, then you can use the `selectAll` event to request all items in server-side mode. ```vue const getItems = () => { // fetch...
It works well locally,  Could you please provide more details or reproduction if possible?
 I clicked the next arrow, and then update the item array, but seems good, is there anything wrong with my operation?
@wozni Do you mean not using spread syntax (...) like: Yes: ``` return itemsInPage.value.map((item, index) => ({ index: currentPageFirstIndex.value + index, item })); ``` No: ``` return itemsInPage.value.map((item, index) =>...
@mm2175 thanks! @hiramkh exactly,If you are using the server side mode,you have to update the serverOptions every time you update the items array. please check the document for more information:...
@wozni Could you provide a demo Items data so I can test it?