mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
Add button to select all columns
This commit is contained in:
@ -472,5 +472,9 @@ $(document).ready(function() {
|
||||
}
|
||||
});
|
||||
});
|
||||
$('#select-all-options').bind('click', function() {
|
||||
var select_id = '#' + $(this).attr('data-target');
|
||||
$(select_id + ' option').prop('selected',true);
|
||||
});
|
||||
|
||||
});
|
||||
|
Reference in New Issue
Block a user