Pylint updates

This commit is contained in:
Horilla
2025-03-21 14:29:13 +05:30
parent 46607e65e9
commit 77f4a76103
17 changed files with 23 additions and 27 deletions

View File

@@ -32,8 +32,8 @@ function toggleColumns(tableId, fieldContainer) {
}
let selectButtons = $(`
<div class="oh-dropdown_btn-header">
<button onclick="$(this).parent().parent().find('[type=checkbox]').prop('checked',true).change()" class="oh-btn oh-btn--success-outline">Select All Columns</button>
<button onclick="$(this).parent().parent().find('[type=checkbox]').prop('checked',false).change()" class="oh-btn oh-btn--primary-outline">Unselect All Columns</button>
<button onclick="$(this).parent().parent().find('[type=checkbox]').prop('checked',true).change()" class="oh-btn oh-btn--success-outline">Select All Rows</button>
<button onclick="$(this).parent().parent().find('[type=checkbox]').prop('checked',false).change()" class="oh-btn oh-btn--primary-outline">Unselect All Rows</button>
</div>
`)
$(`#${fieldContainer}`).parent().prepend(selectButtons)