Hi,
You can use “Dropdown container” widget.
https://marketplace.mendix.com/link/component/111568
Hope this will help.
Hi,
For This you cannot use default drop down widget. Instead you can have a list view with this style and headings.
And handle with visibility.
Hope this helps!
Hi Thuschai Waiyalap,
you can use jQuery to handle this,
$(".hide").click(function(){
$("p").hide();
});
$(".show").click(function(){
$("p").show();
});
//you can modify this jQuery
Hope this will help you!