How to spring to next data grid item?

0
Hi guys   i have a datagrid of images and showing selected image with a listen to data grid (item). Now I just want to go the next/previous data grid with one click, so that image changes in the listener. I thought on: 1 – faking a btn and solving it by javascript + jquery or so.. is there an easier native Mendix way to this?
asked
2 answers
1

I built a widget that enables keyboard commands on a data grid. It was focused on selecting one or many rows using commands like you would use in Excel.

It listens to the up and down arrow keys to select rows. If that meets your needs – awesome. If not, you could use some of the code here to understand how to programmatically change the selection in a data grid.

Download here.

answered
0

Hi Enzo,

Why do you want to use a (listening) data grid in this case? Seems to me you may also solve this with a template grid, which you configure in such whay that it has paging buttons, and 1 row and 1 column. Within the template grid you can set you image and you can navigate with the paging buttons to the next or previous image.

answered