how to add dynamic table in grid?

shree55
edited February 11, 2022 in Analytics #1

Could you please help me here
RowHandle row = (RowHandle) grid.getRows( ).get( 0 );
CellHandle cell = (CellHandle) row.getCells( ).get( 0 );
cell.getContent( ).add(table);

getting error ; missing before

Best Answer

Answers

  • Can you help answer this question?

    We've noticed this question is over 30 days old and hasn't received a response. We're turning to you, the community, to help answer it.

    This generic response is intended to prompt discussion in this post. The question remains open to your answers, suggestions, and best practices.

    If you posted this question and were able to resolve the issue, please share your solution here with others. If you still need additional help, though, please let us know. Your question and its resolution are important to us, and we want to help.

    David Sciuto

  • Without an example, I cannot diagnose the issue you are seeing
    However, I was able to add a table to a grid element using the following:

    gridHandle.getCell(0 /*row*/, 0 /*column*/).getContent().add(rptTable);

    Here is my example for reference:

    Warning No formatter is installed for the format ipb