The PopUp Edit Form window disappears when I try to insert or edit my information even with validation controls in the form. What's the best way to keep the PopUp Edit Form window visible until the information entered is valid?
I tried this but the window still closed.
if (e.Exception != null)
{
e.ExceptionHandled = true;
SetMessage("Product cannot be inserted. Reason: " + e.Exception.Message);
}
else
{
SetMessage("New product is inserted!");
}
Thx
I tried this but the window still closed.
if (e.Exception != null)
{
e.ExceptionHandled = true;
SetMessage("Product cannot be inserted. Reason: " + e.Exception.Message);
}
else
{
SetMessage("New product is inserted!");
}
Thx