|
|
|
Re: Table get Group by script [message #1016882 is a reply to message #1016743] |
Thu, 07 March 2013 22:31  |
Eclipse User |
|
|
|
I am not sure what you are doing with the code but you can get the data item in the first cell of a group header like:
//name your table
var tableHandle = reportContext.getDesignHandle().findElement("mytable");
//get the first group with getGroups().get(0)
//get the first group header row with getHeader().get(0)
//get the first cell with getCells().get(0)
//Get the first element in the cell with getContent().get(0);
tableHandle.getGroups().get(0).getHeader().get(0).getCells().get(0).getContent().get(0);
Jason
|
|
|
Powered by
FUDForum. Page generated in 0.06821 seconds