Clicking on a port to restrict search now uses AJAX instead of page get
This commit is contained in:
		| @@ -23,7 +23,7 @@ | ||||
|         [% END %] | ||||
|       </td> | ||||
|       [% IF params.c_port %] | ||||
|       <td><a class="nd_linkcell" href="[% uri_for('/device', | ||||
|       <td><a class="nd_linkcell nd_this_port_only" href="[% uri_for('/device', | ||||
|               vars.self_options) %]&q=[% params.q | uri %]&f=[% row.port | uri %]"> | ||||
|         [% row.port | html_entity %] | ||||
|       </a></td> | ||||
|   | ||||
| @@ -53,11 +53,12 @@ | ||||
|     }); | ||||
|  | ||||
|     // clickable device port names can simply resubmit AJAX rather than | ||||
|     // fetch the whole page again. FIXME unused? | ||||
|     $('.this_port_only').on('click', function() { | ||||
|     // fetch the whole page again. | ||||
|     $('body').on('click', '.nd_this_port_only', function() { | ||||
|       event.preventDefault(); // link is real so prevent page submit | ||||
|  | ||||
|       var port = $(this).text(); | ||||
|       port = $.trim(port); | ||||
|       sweep.val(port); | ||||
|  | ||||
|       $('.field_clear_icon').show(); | ||||
|   | ||||
		Reference in New Issue
	
	Block a user