Community Tip - Need to share some code when posting a question or reply? Make sure to use the "Insert code sample" menu option. Learn more! X
Hi.
I'm using jsp tag dateInputComponent (from http://www.ptc.com/windchill/taglib/wrappers library) to create date editor.
How can i get data from this editor in jsp?
Thanks.
Solved! Go to Solution.
I found.
request.getParameter("null___XXX_col_XXX___textbox") returns value from date editor.
XXX - is name attribute of tag.
Can anybody tell me, what is null substring in parameter name?
I found.
request.getParameter("null___XXX_col_XXX___textbox") returns value from date editor.
XXX - is name attribute of tag.
Can anybody tell me, what is null substring in parameter name?
Hi,
If using HTML tag for input, the tag name must be following style for being read at NmCommandBean. “null___[attribute name]___textbox” If you want to use combo box, you must set name like following for NmCommandBean. “null___[attribute name]___combobox”
Thanks,
Kaushik