Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
titleEventBeforeSelect on DataGrid to display HasChanges Prompt
linenumberstrue
/**
     * Method to execute before row selecting to display ExternalScreen hasChanges prompt 
     * @param grid 
    
*/

   export function onBeforeGridRowSelect(grid: akioma.swat.Grid) {
        const payload:any = {};

       const DocviewerExternalScreen = akioma.ExternalScreen.getExternalPopup('sDocViewerExternalWindow');
 
      const hasChangesExternal:boolean = DocviewerExternalScreen.akioma.swat.Root.getFirstChildByType('businessEntity').hasChanges();
        
        if(hasChangesExternal) {
 
          payload.promptCursorChange = true;
        }

 

     return payload;
   
}