Community Tip - Did you get an answer that solved your problem? Please mark it as an Accepted Solution so others with the same problem can find the answer easily. 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
