Example of validate method in Ax using lanugage x++
void clicked()
{
super();
if(str2num(rlSrNo_Update.valueStr()) == 0)
{
Warning("Not Valid Roll No");
}
else if(strEmployeeName_Update.valueStr() == "")
{
Warning("Pleae Enter Employee Name");
}
else if(cmbTravellingThrough_Update.selection() == test_Travelling_Through::None)
{
Warning("Pleae Enter Traveling Through");
}
else
{
element.Update_test_Emp_Travel();
}
}