Updated edited_csv.js

This commit is contained in:
Candifloss 2025-02-23 02:25:55 +05:30
parent 8c4ae8dd88
commit fb6745fd31

View File

@ -1,8 +1,10 @@
function collectEditedData(event) {
// Extract headers (attribute names) from the table
const headers = [...document.querySelectorAll('.table-new-assets thead th')].map(th => th.dataset.attrib);
const rows = document.querySelectorAll('.table-new-assets tbody tr');
const assets = [];
// Iterate through rows and collect data
rows.forEach(row => {
const cells = row.querySelectorAll('td');
let asset = {};
@ -10,12 +12,14 @@ function collectEditedData(event) {
assets.push(asset);
});
// Create a hidden input field to store the collected data
const input = document.createElement('input');
input.type = 'hidden';
input.name = 'assets';
input.value = JSON.stringify(assets);
document.querySelector('form').appendChild(input);
// Submit the form
event.target.submit();
return true;
}