UpviseJS : How to show a popup list
Use the Popup class
Popup lists are useful to implement sorting options in a listview.
Popup lists are not searchable and are not added to the history navigation
function showPopup() { Popup.add("Date", "onSort(1)"); Popup.add("Priority", "onSort(1)"); Popup.add("Name", "onSort(1)"); Popup.show(); }