Hi Martijn,
sorry but print/download/export list not possible for now.
This feature is included in our TODO list
for print you can:
- add a link (in module or wherever you want) with url_of_list?tmpl=component&limit=0#print
tmpl=component load only component page, limit=0 load all users (no pagination) #print is used for javascript to print page
for example:
http://www.easy-profile.com/users-list.html?tmpl=component&limit=0#print
- add this code in the head tag in your component template (/templates/your_template/component.php) or javascript file:
<script>
jQuery(document).ready(function($){
if(window.location.hash=="#print"){
$('.jsn_search').hide(); // Remove Search form
window.print();
}
});
</script>