Dear All,
I am trying to use javascript to locate table cell to do some client side calculating (i refer to Calculating Sum of columns in adf table using javascript), most of the line works fine except below which is to get the cell, I debug the scripts, nbRows is correct (in my case is 5), and colId is correct (in my case is c7), so when the script try to get t1[4]:c7 with findComponentByAbsoluteLocator, I got NULL...
var rowCol = AdfPage.PAGE.findComponentByAbsoluteLocator(tableAbsLocator + '[' + nbRows + ']:' + colId);
What is the correct practice to get a ADF table cell with custom java script? I search around but could not find a quick runable one, thanks for help in advance.
-Liang Yi