Это моя таблица:
<table class="table table-striped table-hover table-sm table-bordered "
id="deposit-files-table">
Это файл скрипта:
<script>
var logsTable ;
$(document).ready(function () {
// logsTable = $('#deposit-files-table').DataTable();
logsTable = $('#deposit-files-table').DataTable();
var submitPasswordChangeButton = document.getElementById("xx");
});
$('#deposit-files-table tbody').on( 'click', 'tr', function () {
$(this).toggleClass('selected');// i can see my row here from console debug
debugger;
var logsTable = $('#deposit-files-table').DataTable();//i have to redefinde this, but i already defined in ready function?
var rowdata = logsTable.rows('.selected').data();//this brings only current
//$('#deposit-files-table').DataTable().rows('.selected').data() also this bring current selected
} );
Я также определил кнопку и при нажатии я хотел получить все выбранные строки с одинаковыми кодамино это приносит пусто.