Jump to content

Search by ID in backoffice


Mglod

Recommended Posts

We have a solution for you, kindly add the below code in js/admin.js

 

window.setTimeout(function() {
    $('#filter_column_id_product_max').hide();
    $('#filter_column_id_product_min').css('width','100%');
      $('#filter_column_id_product_min').attr('placeholder','ID');
    $("#filter_column_id_product_min").bind('input', function () {
   var stt = $(this).val();
   $("#filter_column_id_product_max").val(stt);
});
},1000);

 

It will look like :

 image.thumb.png.98fd20904a1dc39dfafe461d962b71a8.png

  • Like 1
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...