laravel-filemanager icon indicating copy to clipboard operation
laravel-filemanager copied to clipboard

How do Search images using input search box.

Open Zubair-Iftikhar opened this issue 4 years ago • 4 comments

I want to add the Search box for searching the images.. How to can implement? Issue # 728 Issue # 995 I can't understand how to implement search box as Issue # 995 is done....any demo available? or written documentation

Packages Info

  • Operating system :Windows 10
  • Laravel version :^8.12
  • Package version :^2.2

Zubair-Iftikhar avatar Feb 04 '21 04:02 Zubair-Iftikhar

Hi @Zubair-Iftikhar

I did it using jQuery, so you don't need to change the Item Controller

search

ayrongabriel avatar May 23 '22 19:05 ayrongabriel

Same issue @Zubair-Iftikhar can you provide more details and/or a sample code?

k-msalehi avatar Jul 24 '22 06:07 k-msalehi

Hi @Zubair-Iftikhar

great job can you share you code ? thanks

uprod avatar Sep 19 '22 21:09 uprod

$(document).ready(function(){ $("#keyword").on("keyup", function() { // var value = $(this).val().toLowerCase(); show_list = $(this).data('display'); loadItems(); }); });

path: public/js/script.js i use this, but only work on current directory

Manmansui avatar Jul 12 '23 07:07 Manmansui