HC

Results 36 comments of HC

Could you please provide more details like screenshots or gifs?

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, ![chrome-capture-2022-11-18](https://user-images.githubusercontent.com/11552575/208277406-2b737434-30db-46fb-921a-ba9cf78c4224.gif) Could you please provide more details or reproduction if possible?

![chrome-capture-2022-11-19](https://user-images.githubusercontent.com/11552575/208430433-78327340-f4f5-4ba0-972a-b9f0e536af4b.gif) 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?