ADF dynamic table
882847Apr 10 2012 — edited Apr 17 2012Hi,
There is a requirement to create a dynamic table on page load. The number of columns and data varies based on user logged in.
For example: If user is ABC ( then no. of columns of the table will be 7)
and if the user is XYZ ( then no. of columns of the table will be 17)
I have written a method in the impl which calls the procedure and gets the number of columns and data based on user logged in. Then i stored that data in two arraylist. one containing the column header and other arraylist containing the data.
So now can you please help me to create a dynamic table by calling this method on page load. One more advice: can you tell the best way of calling the impl method which returns arraylist on page load.
Thanks in advance.