Need sortable Listview Widget w/ accordion UI

1
Hi, I need a sortable (dropdown filter) ListView Widget w/ an Accordion User Interface. Herewith an example   Does it exist in Mendix Widget folder ?   Thank you.
asked
3 answers
2

Hi Christophe,

The list view controls can add the drop down sort functionality that you are looking for.

https://appstore.home.mendix.com/link/app/105694/Mendix/List-view-controls

 

Regarding the accordion effect, you may be able to accomplish this with css and a boolean. You could add a microflow button rendered as a link in your list view for the "view" button. The microflow would change the value of a boolean, and you can use conditional visibility on a container that would have the correct styling to apply the accordion effect. 

 

Hope this helps!

answered
2

To add to what Austin is saying. If you have a div that you hide with a boolean in each row of the listview, it'll have an accordion effect similar to the one you showed above.

answered
1

Hi Austin, Hi Wade,

Thank you for yours answers.

Ok, so Mendix can manage the "show:hide" status of a <div> easily, based on a boolean status, helping w/ a microflow ?

I know to do it w/ a pure HTML/Javascript script.

b/r

Christophe

answered