11-27-2009 06:23 AM
11-30-2009 01:26 AM
<script type="text/javascript">
function load()
{
var allInputs=document.getElementsByTagName("input");
for (var ind=0;ind<allInputs.length;ind++)
{
if(allInputs[ind].value=="Edit")
{
allInputs[ind].onclick = openToEdit; //register the function for onclick
}
}
}
function openToEdit()
{
var answer = confirm("Your are going to edit the workflow Are you sure?");
if(answer==false)
{
//do your action
}else{
//do your action
}
}
</script>
<script type="text/javascript">
window.onload = load;
</script>
02-23-2010 11:57 AM
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.