4
0
Fork 0
dcat-admin/resources/views/grid/displayer/editinline/checkbox.blade.php

16 lines
389 B
PHP

@extends('admin::grid.displayer.editinline.template')
@section('field')
{!! $checkbox !!}
@endsection
<script>
@section('popover-content')
$template.find('input[type=checkbox]').each(function (index, checkbox) {
if($.inArray($(checkbox).attr('value'), $trigger.data('value')) >= 0) {
$(checkbox).attr('checked', true);
}
});
@endsection
</script>