|
|
|
[
Permlink
| « Hide
]
Timothy Wonil Lee - [08/Jan/07 05:16 PM ]
If anyone would like to see more example code, I can upload more. Just let me know by leaving a comment. Thanks!
The ognl expressions that you are generating are invalid. The ognl expression that was failing compilation was:
itemList(09).desc I don't think itemList(03).desc is truly valid either, but it doesn't fail compilation. The way to fix this is to add the single quotes needed so ognl treats the 09 as a string: itemList('09').desc so the jsp would look like this (itemListForm.jsp): <ww:textfield label="%{#status.index} - Item Id" name="itemList('%{id}').id" value="%{id}"/> <ww:textfield label="Item Desc" name="itemList('%{id}').desc" value="%{desc}"/> This made the test code work. Wow! So that was the problem! Thank you Tom!
| ||||||||||||||||||||||||||||||||||||||||||||||||||||