Jump to content

function prepareBoQuery()


hjdc

Recommended Posts

Bonjour,

La function prepareBoQuery() de /js/admin.js crée les évènements onfocus et onblur sur les champs de type "Input".

Dans les fichiers prestashop, le seul input dont le ID est 'bo_query', est dans le fichier /admin/header.inc.php

Or cette fonction supprime l'évènement onblur de tout les inputs ;)

Que suggérez-vous pour changer ce comportement ?



cf extrait de /js/admin.js

function prepareBoQuery() {
   var inputs = document.getElementsByTagName('input');
   var found;

   // For each input
   for (var i=0; i<inputs.length; i++)
   {
       // on focus, show the hint
       inputs[i]< 1)
               $(this).val(search_texts[$('select#bo_search_type').val() - 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...