Multiple choice technology How you will fetch value from an iCommand applet in JavaScript? document.appletname.getGridObject ().getCellValue (row, column) document.appletname.getValue (column, row) document.appletname.getValue (row, column) 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.