Hello,
Just wondering if there is a way to reset a search, or to clear out the search box by clicking a button?
Thanks,
Dan
PS. Great product!
Welcome to the nuBuilder Forums!
Join our community by registering and logging in.
As a member, you'll get access to exclusive forums, resources, and content available only to registered users.
Join our community by registering and logging in.
As a member, you'll get access to exclusive forums, resources, and content available only to registered users.
Reset Search
-
- Posts: 84
- Joined: Mon Jul 04, 2011 12:52 am
Re: Reset Search
Hi,
actually, it's pretty easy.
Copy the code to Custom Code-> Before Browse
(if you want all the brows forms have this, you have to modify the source code)
zazzium
actually, it's pretty easy.
Copy the code to Custom Code-> Before Browse
Code: Select all
$js = "
$(document).ready(function(){
var reset_search_bt_name = 'Reset'; //reset button name
var reset_search_bt = '<button class=\"actionButton\" id=\"reset_searh_bt\">'+reset_search_bt_name+'</button>'
$('#actionButtons').append(reset_search_bt);
$('#reset_searh_bt').click(function(){
$('#search').val('');
changeAction();
$('#thebrowse').submit();
});
});
";
addJSfunction($js);
zazzium
-
- Posts: 2
- Joined: Fri Sep 06, 2013 9:04 pm
-
- Posts: 503
- Joined: Thu May 24, 2012 2:08 am
- Location: Milan, Italy
- Contact: