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.142.55.138
function Callanswerbookstatistics()
{
$("#page_main_div").load('html_modules/answer_book_statistics.html?v=28072017',function()
{
document.getElementById('display_module_name').innerHTML = 'Answer Book Statistics';
document.getElementById('module_name_for_save').value = 'Answer Book Statistics';
getDefaultHeadFooterLinks("Answer Book Statistics");
}
);
}
function Generateansbookstatistics()
{
var reportype = $("#reportype").val();
var date_from = $("#date_from").val();
var date_to = $("#date_to").val();
if(date_from == '')
{
alert('Please Enter From Date.');
document.getElementById('date_from').focus();
return false;
}
if(date_to == '')
{
alert('Please Enter To Date.');
document.getElementById('date_to').focus();
return false;
}
window.location.href = $host_url+"Generateansbookstatistics&reportype="+reportype+"&date_from="+date_from+"&date_to="+date_to;
}
|