Hi,
sorry, we have lost this question
I have another question. Is there a way we can setup a sorting drop down where we can sort the list by Last Name, first Name, Call Sign, ETC
Unfortunately this is not possible natively, anyway there is a workaround:
- Create many Users List menu item, for each menu item set the different order
- Create a custom module, you can set a position before the content (normally all templates allow this) with following HTML code
<select id="orderlist">
<option value="replace_this_with_url_of_firstname_list">Order By Firstname</option>
<option value="replace_this_with_url_of_lastname_list">Order By Lastname</option>
<option value="replace_this_with_url_of_callsign_list">Order By Call Sign</option>
...
</select>
- Add in your following Javascript code (some template allow you to add JS code in style parameters or via some file like custom.js):
jQuery('#orderlist').change(function(){
window.location.href = jQuery(this).val();
});