Page 1 of 1

Sending dynamically created table data from one page to another

Posted: Tue Sep 24, 2013 5:23 pm
by supriya hirurkar

I am creating a dynamic table on a pop-up (appending rows to the table dynamically using JQuery) and on a back button I want to display the table data in the same format on to the page which invoked the pop-up.
I did some efforts using local - variable but all in vain! Please help me with this. Thanks!


Sending dynamically created table data from one page to another

Posted: Tue Sep 24, 2013 7:42 pm
by Kateryna Grynko

Hi Supriya,

In such cases, the emphasis is usually on the data. Then, the grids are created based on data. That is, they should be based on data rather than html table. In addition to displaying the table, you must have a copy of the data in memory, as an object or an array of objects describing the Grid rows/cells. Then you will see what you need to save, in order to take advantage of this on other pages.

There is no general solution for this issue.


Sending dynamically created table data from one page to another

Posted: Tue Sep 24, 2013 11:15 pm
by supriya hirurkar

Thanks Katya! Figured a way