Commit 56d182c8 authored by prahate's avatar prahate

Updated xsl,js for Report Request


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@98964 ce508802-f39f-4f6c-b175-0d175dae99d5
parent aa025e73
...@@ -229,6 +229,22 @@ function setActionVal(value) ...@@ -229,6 +229,22 @@ function setActionVal(value)
document.getElementById("action").value = value; document.getElementById("action").value = value;
}
function doHideMsg(str)
{
document.getElementById(str).style.display = 'none';
}
function setChecked(obj)
{
if( obj.value == 'false' )
{
obj.value ='true';
}
else
{
obj.value = 'false';
}
} }
//Added on 13 OCT 2015 by Pankaj //Added on 13 OCT 2015 by Pankaj
......
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