mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-12-26 09:42:46 +08:00
SCI-4250 disable row selection when vieweng selected checklist items
This commit is contained in:
parent
17c643fb21
commit
29458375ab
1 changed files with 9 additions and 2 deletions
|
@ -106,6 +106,7 @@ var RepositoryDatatable = (function(global) {
|
|||
TABLE.button(0).enable(true);
|
||||
FilePreviewModal.init();
|
||||
updateButtons();
|
||||
disableCheckboxToggleOnCheckboxPreview();
|
||||
}
|
||||
|
||||
function changeToEditMode() {
|
||||
|
@ -373,6 +374,13 @@ var RepositoryDatatable = (function(global) {
|
|||
});
|
||||
}
|
||||
|
||||
function disableCheckboxToggleOnCheckboxPreview(){
|
||||
$(".checklist-dropdown").click(function(e) {
|
||||
e.stopPropagation();
|
||||
$(e.currentTarget).find("ul").toggle()
|
||||
});
|
||||
}
|
||||
|
||||
// Adjust columns width in table header
|
||||
function adjustTableHeader() {
|
||||
TABLE.columns.adjust();
|
||||
|
@ -484,7 +492,6 @@ var RepositoryDatatable = (function(global) {
|
|||
FilePreviewModal.init();
|
||||
// Prevent row toggling when selecting user smart annotation link
|
||||
SmartAnnotation.preventPropagation('.atwho-user-popover');
|
||||
|
||||
// Show number of selected rows near pages info
|
||||
$('#repository-table_info').append('<span id="selected_info"></span>');
|
||||
$('#selected_info').html(' (' + rowsSelected.length + ' entries selected)');
|
||||
|
@ -588,7 +595,7 @@ var RepositoryDatatable = (function(global) {
|
|||
});
|
||||
|
||||
TABLE.on('column-reorder', function() {
|
||||
initRowSelection();
|
||||
FdSelection();
|
||||
});
|
||||
|
||||
$('#assignRepositories, #unassignRepositories').click(function() {
|
||||
|
|
Loading…
Reference in a new issue