Hello, collegues.
I hope you will help me.
I have a display view of SmartList/ContentList. Inside of jsp file which renderer ContentList I try to get request parameters. But in the PreviewStage request parameters are exists and on DeliveryStage those parameters aren't exists.
I need to pass request parameters to the jsp file of display view.
So, my code snippet is:
Enumeration en = request.getParameterNames(); for (; en.hasMoreElements();) { key = en.nextElement().toString(); value = (String) request.getParameter(key); out.println("<input type=\"hidden\" name=\"" + key + "\" value=\"" + value + "\"/>"); } I see only vgnextoid and vgnextchannel parameters. Query string is ...¶m1=param1Value¶m2=param2Value.........
I tried to use PageContext, request, session, PropertyUtils .... Parameters were not appeared...
What can I do to get request parameters inside of display view jsp file?
Thank you.