Hi,
function AssignValueOnCheckboxTick(RouteId, StopNo, totemps, tripid, triptype)
{
if (document.getElementById(RouteId).checked == true)
{
if (triptype == 'P' && StopNo == 1)
{
if ( window.confirm("Do you want to display second employee locality?"))
{
}
else
{
}
}
}
}
my problem is i want to display yes or no instead of ok cancel .please suggest solution.
Regards,
Balu reddy
Loading
SenthilkumarPosted Feb 28, 2012, 3:17 AM
We need to use any external javascript library.
I would suggest you to implement your own control... place some control... set the z-index and use your javascript....
Suthish NairPosted Feb 19, 2012, 2:36 PM
BaluReddy, Using Javascript it's not possible. You need to use jQuery...
Satyapriya NayakPosted Feb 17, 2012, 1:43 AM
Try this...
Thanks