How to call java script function on datagrid update command event

S

Santoshmshinde_it

please tell me what is the problem in this code if i am click OK or
Cancel same function get executed.

<script language="javascript">
function ConfirmAddRecords()
{
var agree;
window.confirm("Are U sure to save Records");
if (agree==true)
{
true ;
}
else
{
false ;
}
}
</script>

regards
Santosh Shinde
 
B

Brock Allen

You are not capturing the return value from confirm. Here's something simpler:

function ConfirmRecords()
{
return window.confirm("You sure?");
}
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,769
Messages
2,569,580
Members
45,054
Latest member
TrimKetoBoost

Latest Threads

Top