Is it possible to change the position of select summary information? Actually, the select summary information is located after the table information summary. I would like to have an information like this : 1 row selected / 57 entries.
Sorry about your messages, the spam filter picked them up.
You can't do that with the language.select.rows as it only accepts a string, you can however overwrite that string when items are selected - see example here,
Replies
You can change the position with
dom
, it's thei
that you'll need to move. You can change the string withlanguage.select.rows
,Colin
Thanks Colin,
But i have another problem.
This is my configuration:
The results:
* for 0 selected : MAX entries;
* for 1 selected : 1 row selected / MAX entries;
* for many selected : 3 rows selected / MAX entries.
How can a get the MAX value (Number of records in the table without filtering)
Thanks,
Sorry about your messages, the spam filter picked them up.
You can't do that with the
language.select.rows
as it only accepts a string, you can however overwrite that string when items are selected - see example here,Colin
Thanks Colin,