Back on a module, how do to hide richselect

Hi ,Alexandra. I have a new problem.My English is not very good, and sometimes difficult to articulate my question.

{ view: "richselect", id: "MBtns_fd", labelWidth: 0, value: 2, data: Cond_Date }
When I click MBtns_fd, but I do not have to make a choice.I phonegap backbutton to return on a module, richselect will still exist, how I want to do in order to hide it?

Hi,

You can call hide() method to hide a popup of richselect as well as popup of combo and datepicker:

var popup_id = $$(“MBtns_fd”).config.popup;
$$(popup_id).hide();