We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, I try use this plugin. After select a few options, and submit form by php (codeigniter 4), in controler I get only one selected row.
My code of form: ` ```
<div class="card card-default"> <div class="card-header"> <h3 class="card-title">Zgłoszenia kontrola jakości do zamknięcia</h3> <div class="card-tools"> <button type="button" class="btn btn-tool" data-card-widget="collapse"> <i class="fas fa-minus"></i> </button> <button type="button" class="btn btn-tool" data-card-widget="remove"> <i class="fas fa-times"></i> </button> </div> </div> <!-- /.card-header --> <div class="card-body"> <div class="row"> <div class="col-12"> <div class="form-group"> <label>Wybierz zgłoszenia</label> <select class="duallistbox" multiple="multiple" > <?php foreach($jobs as $row): ?> <option value="<?php echo $row['IdBazy'].''.$row['id_ZGLOSZENIA']; ?>"><?php echo $row['NrZgloszPrac'].', '.$row['data_zgloszenia'].', '.$row['nieruchomosc']; ?></option> <?php endforeach; ?> </select> </div> <!-- /.form-group --> </div> <!-- /.col --> </div> <!-- /.row --> </div> <!-- /.card-body --> <div class="card-footer"> </div> </div> <?php echo form_submit(['value'=> 'Zamknij','class'=>'btn btn-danger jme-md-2 p-2 m-2']);?> </div> <?php echo form_close(); ?>`
//Bootstrap Duallistbox $('.duallistbox').bootstrapDualListbox({ nonSelectedListLabel: 'Nie wybrane', selectedListLabel: 'Wybrane', preserveSelectionOnMove: 'moved', moveOnSelect: false });
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi, I try use this plugin.
After select a few options, and submit form by php (codeigniter 4), in controler I get only one selected row.
My code of form:
` ```
//Bootstrap Duallistbox $('.duallistbox').bootstrapDualListbox({ nonSelectedListLabel: 'Nie wybrane', selectedListLabel: 'Wybrane', preserveSelectionOnMove: 'moved', moveOnSelect: false });
The text was updated successfully, but these errors were encountered: