ScareCrow
ScareCrow
FFilament
Created by ScareCrow on 3/18/2025 in #❓┊help
BulkAction not getting data from modal submit
This is the 'livewire.balance.download-documents-table'
4 replies
FFilament
Created by ScareCrow on 3/18/2025 in #❓┊help
BulkAction not getting data from modal submit
<div style="overflow-x: auto;">
<form id="downloadForm">
<table style="width: 100%; border-collapse: collapse;">
<thead>
<tr>
<th>PDF</th>
<th>XML</th>
<th>Remisiones</th>
</tr>
</thead>
<tbody>
@foreach ($records as $record)
<tr>
<td>
<input type="checkbox" name="pdf_{{ $record->id }}" {{ !$record->pdf ? 'disabled' : 'checked' }}>
</td>
<td>
<input type="checkbox" name="xml_{{ $record->id }}" {{ !$record->xml ? 'disabled' : 'checked' }}>
</td>
<td>
<input type="checkbox" name="remisiones_{{ $record->id }}" {{ !$record->remisiones ? 'disabled' : 'checked' }}>
</td>
</tr>
@endforeach
</tbody>
</table>
</form>
</div>
<div style="overflow-x: auto;">
<form id="downloadForm">
<table style="width: 100%; border-collapse: collapse;">
<thead>
<tr>
<th>PDF</th>
<th>XML</th>
<th>Remisiones</th>
</tr>
</thead>
<tbody>
@foreach ($records as $record)
<tr>
<td>
<input type="checkbox" name="pdf_{{ $record->id }}" {{ !$record->pdf ? 'disabled' : 'checked' }}>
</td>
<td>
<input type="checkbox" name="xml_{{ $record->id }}" {{ !$record->xml ? 'disabled' : 'checked' }}>
</td>
<td>
<input type="checkbox" name="remisiones_{{ $record->id }}" {{ !$record->remisiones ? 'disabled' : 'checked' }}>
</td>
</tr>
@endforeach
</tbody>
</table>
</form>
</div>
4 replies
FFilament
Created by zidd on 12/2/2024 in #❓┊help
Bulk Action Button on Modal Submit
Did you got a solution?
4 replies
FFilament
Created by zidd on 12/2/2024 in #❓┊help
Bulk Action Button on Modal Submit
Similar issue and 2 days of unsuccessful seach
4 replies
FFilament
Created by Matthew on 9/2/2024 in #❓┊help
wizard scroll bar solution?
Thanks, will try as well and post and update
8 replies
FFilament
Created by Matthew on 9/2/2024 in #❓┊help
wizard scroll bar solution?
Same issue, and gets worse with 10+ steps. Also in mobile view the user needs to scroll to the bottom each time it finishes a step
8 replies