fadlyshafa

Untitled

Mar 29th, 2020
305
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
jQuery 0.49 KB | None | 0 0
  1. $('.cari').select2({
  2.         placeholder: 'Cari...',
  3.         ajax: {
  4.           url: "{{ url('master/guru/santri/ajax') }}",
  5.           dataType: 'json',
  6.           delay: 250,
  7.           processResults: function (data) {
  8.             return {
  9.               results:  $.map(data, function (item) {
  10.                 return {
  11.                   text: item.nama,
  12.                   id: item.id
  13.                 }
  14.               })
  15.             };
  16.           },
  17.           cache: true
  18.         }
  19.       });
Add Comment
Please, Sign In to add comment