Commit c6fd3533 authored by steurwadkar's avatar steurwadkar

Changes made by Santosh


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@101642 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 7a2a94e2
......@@ -2771,3 +2771,18 @@ function setColumnValuesNew( retVal )
}
//Changed by samadhan on 03/02/2015 for fixed matxix table header End
//Added by Santosh on 13-05-2016 to make dummy call to avoid session time out [Start]
function dummyServletCall()
{
setInterval(function(){callServlet("BASE"); }, 600000);
}
function callServlet(user)
{
var url = "/ibase/DummySessionServlet?CODE="+user;
var httpRequestNewDummy=new XMLHttpRequest();
httpRequestNewDummy.open("POST", url, false);
httpRequestNewDummy.setRequestHeader( "Content-Type", "application/x-www-form-urlencoded; charset=UTF-8" );
httpRequestNewDummy.send( null );
}
//Added by Santosh on 13-05-2016 to make dummy call to avoid session time out [End]
......@@ -27,6 +27,7 @@
<!-- Removed by Samadhan 19/11/2015 for delevary date calculation$( "#dlv_date1").datepicker({ minDate: 0, changeMonth: true, changeYear: true, dateFormat : "d/m/y"});-->
<!-- in above function pageLoad() function added by samadhan on 14/07/2015 -->
</script>
<!--//Changed by samadhan on 03/02/2015 for fixed matxix table header Start-->
<style type="text/css">
table.mt {border-width: 1px;border-spacing:0px ;border-style: solid;border-color: #cfcfcf;border-collapse: collapse;line-height: 25px;background-color: #FFF;}
......@@ -45,7 +46,9 @@
}
</style>
<!--//Changed by samadhan on 03/02/2015 for fixed matxix table header End-->
<body>
<!--//Changed by Santosh on 12-05-2016 for dummy call-->
<!--body-->
<body onload="dummyServletCall();">
<form name="porderWizFormII" id="porderWizFormII" METHOD="post" ACTION="/ibase/ITMWizardHandlerServlet">
<div class="mainPage-Container">
<div style="overflow: auto;height:90%">
......
......@@ -80,7 +80,9 @@
}
</style>
<!--//Changed by samadhan on 03/02/2015 for fixed matxix table header End-->
<body>
<!--//Changed by Santosh on 12-05-2016 for dummy call-->
<!--body-->
<body onload="dummyServletCall();">
<form name="porderWizFormIII" id="porderFormIII" METHOD="post" ACTION="/ibase/ITMWizardHandlerServlet">
<!-- <div id="header" style="width:100%;height:100px">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment