Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin

...

  • The third programmatic identifier (called AKey3) contains the employee number.
  • The second visual identifier (called VisualId2) contains the employee's name.

Wiki Markup
When you know the identification protocol, you can create a JavaScript that displays the number and name of the currently selected employee in the instance list:
 
/* Get the current instance list details */
\{
   var strEMPNO = objListManager.AKey3\[0\];     /* 3rd Akey is the number   */
   var strNAME  = objListManager.VisualId2\[0\]; /* 2nd VisualId is the name */ 
 
   alert("Current employee number is " + strEMPNO);
   alert("Current employee name is " + strNAME);
\}
 
Like this: 
!worddavaf485e25f57cd86bb5b0fc63f3f1b1cc.png|height=32,width=32!
!worddavaf485e25f57cd86bb5b0fc63f3f1b1cc.png|height=32,width=32!

...