Bug # 3170585 [AJAX] Adding more fields fails.

This commit is contained in:
Madhura Jayaratne
2011-02-03 00:51:58 +05:30
parent 3a3f6d5141
commit 3e4e3fb4d6
2 changed files with 20 additions and 3 deletions

View File

@@ -1845,7 +1845,14 @@ $(document).ready(function() {
//User wants to add more fields to the table //User wants to add more fields to the table
$.post($form.attr('action'), $form.serialize() + "&submit_num_fields=" + $(this).val(), function(data) { $.post($form.attr('action'), $form.serialize() + "&submit_num_fields=" + $(this).val(), function(data) {
// if 'create_table_dialog' exists
if ($("#create_table_dialog").length > 0) {
$("#create_table_dialog").html(data); $("#create_table_dialog").html(data);
}
// if 'create_table_div' exists
if ($("#create_table_div").length > 0) {
$("#create_table_div").html(data);
}
}) //end $.post() }) //end $.post()
}) // end create table form (add fields) }) // end create table form (add fields)

View File

@@ -362,7 +362,17 @@ if (isset($_REQUEST['do_save_data'])) {
/** /**
* Displays the form used to define the structure of the table * Displays the form used to define the structure of the table
*/ */
// This div is used to show the content(eg: create table form with more columns) fetched with AJAX subsequently.
if($GLOBALS['is_ajax_request'] != true) {
echo('<div id="create_table_div">');
}
require './libraries/tbl_properties.inc.php'; require './libraries/tbl_properties.inc.php';
// Displays the footer // Displays the footer
require './libraries/footer.inc.php'; require './libraries/footer.inc.php';
if($GLOBALS['is_ajax_request'] != true) {
echo('</div>');
}
?> ?>