How to make dropdown button like this ?

0
Hi all,   I want to give dropdown menu like this.     Thank you so much.
asked
3 answers
6

 

Hi,

 

You can use “Dropdown container” widget. 

https://marketplace.mendix.com/link/component/111568

 

Hope this will help.

answered
4

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!

answered
4

Hi Thuschai Waiyalap,

 

you can use jQuery to handle this,

  • Add your drop-down menu to a container.
  • Place the drop-down container inside the layout.
  • Add HTML snippet and place the below code in javascript with jQuery

$(".hide").click(function(){
  $("p").hide();
});

$(".show").click(function(){
  $("p").show();
});

//you can modify this jQuery 

 

Hope this will help you!

 

answered