Multiselect to all number of rows

Hi,

Can we able to pass all rows value**(Number of row shown in pagination)** similar to check-all to controller.

Currently i am able to send no of total rows present in current pagination page.

For Example : 1-50 rows of 162
I am able to select only 50 values but i want to select all 162 rows.

Visual component get entities from container.
Container contains one page of entities (50 in your case).
So short answer is: no, you cant pass all rows.
You can create your own action with caption like “Execute for all rows” that do what you want with all rows even without rows selection. Table filter may be a problem.
Or extend jmix table component and overwrite selectAll() method.
Or unwrap component and add your addShortcutListener()

1 Like