when the item Per Page 10 the dropdown actions open when I click on
but when I select item Per Page 25 the dropdown actions not open after the item 10
from 11 to etc its not open .
Metronic
Vue demo 8 version 8.1.6
node v18.14.1
npm 9.6.0
Hi,
Thank you for your feedback.
We reproduced this issue and will include a fix in the next releases. For now, as a temporary solution, you can reinitialize menu components inside @on-items-per-page-change event.
Add an event handler to your component and in the handler function reinitialize menu component.@on-items-per-page-change="onItemsPerPageChange"
const onItemsPerPageChange = () => {
setTimeout(() => {
MenuComponent.reinitialization();
}, 0);
};
what is this >
I think incorrect syntax !
sorry , please more explain .
And when will the new version be released ?
Hi,
Sorry, this is a mistake in our code highlighter. It's supposed to be a javascript arrow function.
You can find an updated code in this gist file.
We are planning to release Metronic v8.1.9 this week.
Regards,
Lauris Stepanovs,
Keenthemes Support Team