I submit the form through modal. Based on user input, some data will be sent to modal. I need to check the data before loading the modal. The current code prevents the display of modality if no orders are selected, but as soon as the user selects some orders and re-returns the form, the modal form is not yet displayed.
Js
function batchHoldModalLauncher($hold_name){ // get modal id var modal_id = "#"+$hold_name+"_modal_id"; // check if any orders are selected if ($("#order_hold_table_body input:checkbox:checked").length > 0) { $(modal_id).modal('show'); } else { // no boxes checked $('.modal').on('show.bs.modal', function() { return false; }); alert('Choose some orders to put on hold'); } }
Laravel PHP Code where the form is submitted and the modal is called
<div class="col-md-3" style="margin-top: 20px;"> {!! Form::open(['url' => '/hold', 'method' => 'POST', 'class' => 'form-inline']) !!} <h4> Orders for Batch {{ $batch->id }} <div class="btn-group"> <button type="button" class="btn btn-sm btn-danger dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> Hold <span class="caret"></span> </button> <ul class="dropdown-menu dropdown-menu-danger"> @foreach($holds as $hold) <?php $hold_name = str_replace(' ', '', $hold->name); ?> <li><a href="#" data-toggle="modal" onclick="batchHoldModalLauncher('{{ $hold_name }}')" data-target="#modal{{ $hold_name }}">{{ $hold->name }}</a></li> @endforeach </ul> </div> </h4> <table class="table table-striped" id="order_hold_table"> <thead> <th>Order Number</th> <th>Hold {!! Form::checkbox('hold_toggle', null, false, [ 'class'=>'toggle-button', 'style'=>'float:right' ]) !!}</th> </thead> <tbody id="order_hold_table_body"> @foreach($orders as $o) <tr> <td> @if($type == 'receiving') {{ $o->id }} @elseif($type == 'sales') {{ $o->order_number }} @endif </td> <td> {!! Form::checkbox('hold[]', $o->id, false, ['style'=>'float:right']) !!} </td> </tr> @endforeach </tbody> </table> {!! Form::close() !!}
javascript jquery twitter-bootstrap laravel-5 bootstrap-modal
Brent connector
source share