Page History
...
More than one entry can be selected in the instance list. This script displays the number and name of all selected employees in a message:
Wiki Markup
/* Get all the selected employees */
...
{
var i = 0;
...
var strMessage = "";
...
for (i = 1; i <= objListManager.TotalSelected; i++)
...
{
strMessage += "Employee " + objListManager.AKey3
...
[i...
];...
strMessage += " - " + objListManager.VisualId2
...
[i...
] + "\x0D";...
}
alert(strMessage);
...
}
So if this script was used with three selected instance list entries like this:
It would display this alert message:

