Hi All,
I am getting problem in confirmation dialog like this:
I had written a Method for Validation Check, so variou if else is there
public void dovalidation()
{
if (x<y)
{
Popup dialog1
}
if (i<j)
{
popup dialog2
}
if(m<n)
{
popup dialog3
}
-
-
---
}
If all the condion are true, I am getting only the last dialog, here like dialog3, and after passing its event handler I am seeing on more dialog with no message no event handler button.
What I am trying is that if condition 1 is true it will popup dialog 1 , other should not get processed.
Pl. suggest.
Regards,
Prakash