Posts

Showing posts from August, 2024

Table Methods

 Init Value:          While creating the new record this method will trigger. ValidateField: (Only  for Validation Purpose)          While Focus leave the Fields or Modifying the Fields it will trigger.  Return type is Boolean so we can do our custom validation on the specific fields we can introduced her. It will return the boolean value based on the Field validation. ModifiedField:      When ever any modification on the fields this method will trigger. if we have a customization on both ValidationField and  ModifiedField , this  ModifiedField  method will trigger if  ValidationField return true. ValidateWrite:     This is also validating the records, before committing the records to the database you need to do a validate for any custom logic then write it her. Based on this condition value true it will allow your records to save in the database. ValidateDelete:     S...