Translation update done using Pootle.
[phpmyadmin/dkf.git] / js / tbl_select.js
blob97de18113abe9333cc035955567194a760b5dbd4
1 /**
2  * @fileoverview JavaScript functions used on tbl_select.php
3  *
4  * @requires    jQuery
5  * @requires    js/functions.js
6  */
8 /**
9  * Ajax event handlers for this page
10  *
11  * Actions ajaxified here:
12  * Table Search
13  */
14 $(document).ready(function() {
16     /**
17      * Set a parameter for all Ajax queries made on this page.  Don't let the
18      * web server serve cached pages
19      */
20     $.ajaxSetup({
21         cache: 'false'
22     });
24     /**
25      * Ajax event handler for Table Search
26      * 
27      * @uses    PMA_ajaxShowMessage()
28      */
29     $("#tbl_search_form").live('submit', function(event) {
30         event.preventDefault();
32         PMA_ajaxShowMessage(PMA_messages['strSearching']);
34         $(this).append('<input type="hidden" name="ajax_request" value="true" />');
36         $.post($(this).attr('action'), $(this).serialize(), function(data) {
37             $("#searchresults").html(data);
38         })
39     })
40 }, 'top.frame_content'); // end $(document).ready()