123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- <style>
- table.grid-switch-group tr td {
- padding: 3px 0!important;
- height:25px!important;
- border: 0!important;
- }
- </style>
- <table class="grid-switch-group">
- @foreach($columns as $column => $label)
- @php($checked = Illuminate\Support\Arr::get($row, $column) ? 'checked' : '')
- <tr style="box-shadow: none;background: transparent">
- <td>{{ $label }}: </td>
- <td><input name="{{ $column }}" data-path="{{ $resource }}" data-key="{{ $key }}" {{ $checked }}
- type="checkbox" class="grid-column-switch-group" data-size="small" data-color="{{ $color }}"/></td>
- </tr>
- @endforeach
- </table>
- <script require="@switchery">
- var swt = $('.grid-column-switch-group'),
- reload = '{{ $refresh }}',
- that;
- function initSwitchery() {
- swt.each(function() {
- that = $(this);
- that.parent().find('.switchery').remove();
- new Switchery(that[0], that.data())
- })
- }
- initSwitchery();
- swt.off('change').change(function(e) {
- var that = $(this),
- id = that.data('key'),
- url = that.data('path') + '/' + id,
- checked = that.is(':checked'),
- name = that.attr('name'),
- data = {},
- value = checked ? 1 : 0;
- if (name.indexOf('.') === -1) {
- data[name] = value;
- } else {
- name = name.split('.');
- data[name[0]] = {};
- data[name[0]][name[1]] = value;
- }
- Dcat.NP.start();
- $.put({
- url: url,
- data: data,
- success: function (d) {
- Dcat.NP.done();
- var msg = d.data.message || d.message;
- if (d.status) {
- Dcat.success(msg);
- reload && Dcat.reload()
- } else {
- Dcat.error(msg);
- }
- }
- });
- });
- </script>
|