radio.blade.php 386 B

123456789101112131415
  1. @extends('admin::grid.displayer.editinline.template')
  2. @section('field')
  3. {!! $radio !!}
  4. @endsection
  5. <script>
  6. @section('popover-content')
  7. $template.find('input[type=radio]').each(function (index, checkbox) {
  8. if(String($(checkbox).attr('value')) === String($trigger.data('value'))) {
  9. $(checkbox).attr('checked', true);
  10. }
  11. });
  12. @endsection
  13. </script>