Siemens ix-angular pagination component

Hi, I’m using ix-pagination component for angular project, and I can’t get de selectedPage … anyone have the same problem?

My code looks like:

<ix-pagination count=“{{total}}”
(pageSelected)=“onPageChange(page)”>

I read the official documentation and I can’t get any answer … I don’t know if components works with EventEmitters or subscribers … anyone can help me?

Thanks!

Hello @ivan.rodriguez, please make sure to access the detail property of the event parameter like so:

(e) => e.detail

1 Like

Thanks Lukas, I will try this solution!