After using Client Side validation on EditForm the page still does a postback and erases the error message from screen?.
Any way to stop that?. I use the following javascript to check is page is valid
function ApproveUpdate(CurStatus)
{
if (!ASPxClientEdit.ValidateEditorsInContainerById('FELineTab'))
{
return false;
}
else
{
grid.UpdateEdit();
//grid.BeginUpdate()
}
}
Thanks
VJ