Multiple choice technology

How you will fetch value from an iCommand applet in JavaScript?

  1. document.appletname.getGridObject ().getCellValue (row, column)

  2. document.appletname.getValue (column, row)

  3. document.appletname.getValue (row, column)

  4. none of the above

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

iCommand applets expose values through the getValue(column, row) method in JavaScript. The parameter order is column first, then row index - this is a specific API convention in MII applets. Option B shows the correct syntax.