×

Notice

The forum is in read only mode.
Welcome, Guest
Username: Password: Remember me
  • Page:
  • 1

TOPIC: Add a onKeyPress function on the search module

Add a onKeyPress function on the search module 8 years 5 months ago #34236

  • Jérôme Isard
  • Jérôme Isard's Avatar Topic Author
  • Offline
  • Fresh Boarder
  • Fresh Boarder
  • Posts: 17
  • Thank you received: 0
Hi!
How can I have a onKeyPress function on the search?
I'd like to press "ENTER" to launch the search in the timeline.
I've tried to add an "onKeyPress" function in input but it doesn't work : the search module use this php code <?php echo MatukioHelperRendering::getSearch($this->search); ?> and I d'on't how it's work...
thx 4 answering!

Add a onKeyPress function on the search module 8 years 5 months ago #34265

  • Yves Hoppe
  • Yves Hoppe's Avatar
  • Offline
  • Administrator
  • Administrator
  • Posts: 3519
  • Karma: 71
  • Thank you received: 556
Hello,

easiest way is probably using jquery for it:

jQuery('#search').keypress(function (e) {
if (e.which == 13) {
jQuery('#btnSearch').trigger();
return false;
}
});

Kind regards,
Yves

Add a onKeyPress function on the search module 8 years 5 months ago #34279

  • Jérôme Isard
  • Jérôme Isard's Avatar Topic Author
  • Offline
  • Fresh Boarder
  • Fresh Boarder
  • Posts: 17
  • Thank you received: 0
Thank you so much, but where I have to paste this code ?
In wich file ?

Add a onKeyPress function on the search module 8 years 5 months ago #34280

  • Yves Hoppe
  • Yves Hoppe's Avatar
  • Offline
  • Administrator
  • Administrator
  • Posts: 3519
  • Karma: 71
  • Thank you received: 556
You can paste it in any javascript file, for example the ones your template offers (then you don't have to worry with Matukio updates)

Add a onKeyPress function on the search module 8 years 5 months ago #34282

  • Jérôme Isard
  • Jérôme Isard's Avatar Topic Author
  • Offline
  • Fresh Boarder
  • Fresh Boarder
  • Posts: 17
  • Thank you received: 0
ok
well I've try to paste in a js file create for jquery fonction here : view-source:http://magazine-sortir.fr/templates/make/js/jquery.easing.1.3.js
but it doesn't work

Add a onKeyPress function on the search module 8 years 5 months ago #34283

  • Jérôme Isard
  • Jérôme Isard's Avatar Topic Author
  • Offline
  • Fresh Boarder
  • Fresh Boarder
  • Posts: 17
  • Thank you received: 0
now I've try to paste it in a matukio js : event.jquery.js
but same problem : no match

Add a onKeyPress function on the search module 8 years 5 months ago #34284

  • Jérôme Isard
  • Jérôme Isard's Avatar Topic Author
  • Offline
  • Fresh Boarder
  • Fresh Boarder
  • Posts: 17
  • Thank you received: 0
well I've try in several place : no match...
  • Page:
  • 1
Time to create page: 0.118 seconds