Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64
Your IP : 3.135.249.119
Current Path : /var/www/oasis/js_old/ |
| Current File : /var/www/oasis/js_old/export_import.js |
function LoadExportTablesUtility() {
$geditinternalcode = 0;
window.enable_proper_module = "export_table_utility";
$("#page_main_div").load("../html_modules/export_tables.html", function() {
alert("export_table_utility");
document.getElementById("display_module_name").innerHTML = "Export Tables";
document.getElementById("module_name_for_save").value = "saveExport_table";
document.getElementById("vertical_space_div").style.height = "8px";
});
$("#module_details_div").hide();
}
function ExportTablesFromDbtoSystem($responce) {
$.ajax({
type: "POST",
url: $host_url + "ExportTablesFromDbtoSystem.demo",
success: ExportTablesFromDbtoSystemResponce
});
}
function ExportTablesFromDbtoSystemResponce($responce) {
$responce = eval("(" + $responce + ")");
alert($responce.data);
}
//################### IMport Tables ################
function LoadImportTablesUtility() {
$geditinternalcode = 0;
window.enable_proper_module = "export_table";
$("#page_main_div").load("../html_modules/import_tables.html", function() {
document.getElementById("display_module_name").innerHTML = "Import Tables";
document.getElementById("module_name_for_save").value = "saveimport_table";
document.getElementById("vertical_space_div").style.height = "8px";
});
$("#module_details_div").hide();
}
function importTablesFromSystemtoDb($responce) {
$.ajax({
type: "POST",
url: $host_url + "importTablesFromSystemtoDb.demo",
success: importTablesFromSystemtoDbResponce
});
}
function importTablesFromSystemtoDbResponce($responce) {
$responce = eval("(" + $responce + ")");
alert($responce.data);
}
|