
Conflicts: po/af.po po/ar.po po/az.po po/be.po po/be@latin.po po/bg.po po/bn.po po/bs.po po/ca.po po/cs.po po/cy.po po/da.po po/de.po po/el.po po/en_GB.po po/es.po po/et.po po/eu.po po/fa.po po/fi.po po/fr.po po/gl.po po/he.po po/hi.po po/hr.po po/hu.po po/id.po po/it.po po/ja.po po/ka.po po/ko.po po/lt.po po/lv.po po/mk.po po/mn.po po/ms.po po/nb.po po/nl.po po/phpmyadmin.pot po/pl.po po/pt.po po/pt_BR.po po/ro.po po/ru.po po/si.po po/sk.po po/sl.po po/sq.po po/sr.po po/sr@latin.po po/sv.po po/ta.po po/te.po po/th.po po/tr.po po/tt.po po/uk.po po/ur.po po/uz.po po/uz@latin.po po/zh_CN.po po/zh_TW.po
68 lines
2.0 KiB
JavaScript
68 lines
2.0 KiB
JavaScript
/* vim: set expandtab sw=4 ts=4 sts=4: */
|
|
/**
|
|
* function used wherever an sql query form is used
|
|
*
|
|
* @version $Id$
|
|
*/
|
|
|
|
$(document).ready(function() {
|
|
|
|
$('<span id="togglequerybox"></span>')
|
|
.html(PMA_messages['strToggleQueryBox'])
|
|
.appendTo("#sqlqueryform");
|
|
|
|
$("#togglequerybox").live('click', function() {
|
|
$(this).siblings().slideToggle("medium");
|
|
})
|
|
|
|
//SQL Query Submit
|
|
$("#sqlqueryform").live('submit', function(event) {
|
|
event.preventDefault();
|
|
|
|
PMA_ajaxShowMessage();
|
|
|
|
$(this).append('<input type="hidden" name="ajax_request" value="true" />');
|
|
|
|
$.post($(this).attr('action'), $(this).serialize() , function(data) {
|
|
$("#sqlqueryresults").html(data);
|
|
if($("#togglequerybox").siblings(":visible").length > 0) {
|
|
$("#togglequerybox").trigger('click');
|
|
}
|
|
})
|
|
}) // end SQL Query submit
|
|
|
|
//Paginate the results table
|
|
$("input[name=navig]").live('click', function(event) {
|
|
event.preventDefault();
|
|
|
|
var the_form = $(this).parent("form");
|
|
|
|
$(the_form).append('<input type="hidden" name="ajax_request" value="true" />');
|
|
|
|
$.post($(the_form).attr('action'), $(the_form).serialize(), function(data) {
|
|
$("#sqlqueryresults").html(data);
|
|
})
|
|
})// end Paginate results table
|
|
|
|
//Paginate results with Page Selector
|
|
$("#pageselector").live('change', function(event) {
|
|
event.preventDefault();
|
|
|
|
//PMA_ajaxShowMessage();
|
|
|
|
$.get($(this).attr('href'), $(this).serialize() + '&ajax_request=true', function(data) {
|
|
$("#sqlqueryresults").html(data);
|
|
})
|
|
})// end Paginate results with Page Selector
|
|
|
|
//Sort results table
|
|
$("#table_results").find("a[title=Sort]").live('click', function(event) {
|
|
event.preventDefault();
|
|
|
|
PMA_ajaxShowMessage();
|
|
|
|
$.get($(this).attr('href'), $(this).serialize() + '&ajax_request=true', function(data) {
|
|
$("#sqlqueryresults").html(data);
|
|
})
|
|
})//end Sort results table
|
|
}) |