API Docs for: 1.0.0
Show:

eLabSDK.Study Class

Module: eLabSDK

Constructor

eLabSDK.Study

(
  • object
)
async

Parameters:

  • object Object
    • studyID Int
    • onLoaded Function
      • Include your code here due to the aSync nature of this class

Example:

  var s = new eLabSDK.Study({studyID: 50, onLoaded: function(){
        console.log(s.data);
  }});

Item Index

Methods

Events

Methods

getMeta

()

Events

onLoaded

Use this to access class

Example:

  var ev = studyObject.onLoaded(function () { 
                          alert('Study Loaded'); 
                      });