You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 8, 2024. It is now read-only.
Would it be possible to add some additional functionality to tables, such as:
Simple filter - as can be seen here
Alternatively, a filter for specific columns, such as this. This type of filter is very intuitive for the end user and in some cases it is better than django-filter which requires a page reload. With the second example linked (column filter); the django-filter could be incorporated there and hence the whole right-panel card for the filterset could be made redundant.
Expandable rows to show additional information / sub rows. An example can be found here for expanding additional info, but what would be also nice is a FK relationship displayed - for example 'Country -> Cities'. On the list view of Countries, it would be perfect if we can click Country to expand it and it would show Cities within that country (with relevant info in sub-columns, such as population or area). It is extremely common to have the need to show parent/child relationship and this would be one of the ways to achieve it nicely.
The text was updated successfully, but these errors were encountered:
By the way this is a very nice library for table creation through python. I do realise that it does not work through AJAX and so it is, potentially, much slower than the current implementation, but it allows for an extremely nice control over the tables.
It doesn't really relate to the two issues I mentioned above in OP, but it's potentially related to ListModelView / tables.
Would it be possible to add some additional functionality to tables, such as:
Simple filter - as can be seen here
Alternatively, a filter for specific columns, such as this. This type of filter is very intuitive for the end user and in some cases it is better than django-filter which requires a page reload. With the second example linked (column filter); the django-filter could be incorporated there and hence the whole right-panel card for the filterset could be made redundant.
Expandable rows to show additional information / sub rows. An example can be found here for expanding additional info, but what would be also nice is a FK relationship displayed - for example 'Country -> Cities'. On the list view of Countries, it would be perfect if we can click Country to expand it and it would show Cities within that country (with relevant info in sub-columns, such as population or area). It is extremely common to have the need to show parent/child relationship and this would be one of the ways to achieve it nicely.
The text was updated successfully, but these errors were encountered: