eLabSDK.Page.Study Class
Customize the Study View Page
Item Index
Methods
Methods
addTopMenu
        
            (
    
    - 
                        
object 
Adds a navigation element to the top main menu
Parameters:
- 
                        
objectObject- 
                                    
labelString - 
                                    
placeLastBool - 
                                    
actionFunction 
 - 
                                    
 
Example:
 var nav = new eLabSDK.Page.Navigation();
 nav.addTopMenu({
     label: 'Start Custom Function',
     placeLast: true.
     action: function(){
         alert('Thank you for using this custom feature');
     }
 });
            