Codeunit/Formevents

From TempusServa wiki
Revision as of 21:21, 18 September 2012 by old>Admin (Created page with 'Form events fires different actions during execution of a solution LIST level event hooks are public String appendListPageHead() { return ""; } public String appendList…')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Form events fires different actions during execution of a solution

LIST level event hooks are

   public String appendListPageHead() { return ""; }
   public String appendListPageFoot() { return ""; }
   public void beforeSelectList() throws Exception {}    
   public void beforeRenderList() throws Exception {}       

ITEM level event hooks are

   public String appendItemPageHead() { return ""; }    
   public String appendItemPageFoot() { return ""; }    
   public void beforeSelectItem() throws Exception {}    
   public void beforeChangeItem() throws Exception {}
   public void beforeUpdateItem() throws Exception {}
   public void beforeRenderItem() throws Exception {}    
   
   public boolean afterUpdateRedirect() {   return false; }
   public String afterUpdateRedirectContent()   {   return null;    }