Hi,
I have a page that has a table record and check box for each record. I have a link at the bottom of the page which lets me navigate to an action where the selected values are processed.
These records are child records related to a single parent record. While navigating to the action, I'm sending the parent record Id as parameter to the action.
Inside the action, I'm processing all the child records and creating a comma-seperated-value of all the child record ids and sending to a different page as input to destination.
This works fine when I have 10 or 15 child records. But when the number of child records is more than 100, it fails and redirects me to a 'Error:404' page.
Is there a better way than sending the values as a csv? Is it possible to send multiple values as input parameter? If not, then how can I manage to send multiple child record Ids to the next page without sending it as an input parameter?
I have a page that has a table record and check box for each record. I have a link at the bottom of the page which lets me navigate to an action where the selected values are processed.
These records are child records related to a single parent record. While navigating to the action, I'm sending the parent record Id as parameter to the action.
Inside the action, I'm processing all the child records and creating a comma-seperated-value of all the child record ids and sending to a different page as input to destination.
This works fine when I have 10 or 15 child records. But when the number of child records is more than 100, it fails and redirects me to a 'Error:404' page.
Is there a better way than sending the values as a csv? Is it possible to send multiple values as input parameter? If not, then how can I manage to send multiple child record Ids to the next page without sending it as an input parameter?