возможно ли отобразить подкачку html-таблицы в URL?Был бы признателен, если кто-то может научить или дай мне ссылку, чтобы узнать об этом.Кажется, нигде не могу его найти.Спасибо!
Код таблицы:
<div id="btnDLContainer">
<button onclick="exportTableToExcel('tableToCsv')" type="button contact-button" class="btnDL">XLSX Download</button>
<button export-to-csv class="btnDL">CSV Download</button>
<table ng-show="auditoriums === 'none'">
<tr> <th> Name </th> <th> Address Block No. </th> <th> Postal Code </th> <th> Street Name </th> </tr>
<tr ng-repeat="audit in auditoriums| limitTo: 1 - auditoriums.length">
<td>{{audit.NAME}}</td>
<td>{{audit.ADDRESSBLOCKHOUSENUMBER}}</td>
<td>{{audit.ADDRESSPOSTALCODE}}</td>
<td>{{audit.ADDRESSSTREETNAME}}</td>
</tr>
</table>
</div>