| Author |
Force struts2 form to return LinkedHashMap?
|
Raymond Holguin
Ranch Hand
Joined: Aug 11, 2009
Posts: 47
|
|
Ok my situation is that I have a series of checkboxes and I create them using a LinkedHashMap so that the order I put the data in the Map is the same order they appear as checkboxes in the UI. That part works perfectly, the problem is that when i submit the form the data seems to get thrown into a HashMap and the results are returned in a sorted order....not the same order as they appear. Its crucial that I get the ordering. any ideas on how I can do this???
Currently I have my form object:
I set the checkboxes in my prepare() method:
They display perfectly in my UI layed out the way i inserted them:
but when i check all the boxes the keyset become sorted. I know a way I could do it would be something like and do some string parsing to display the data correctly....this but I dont want to do it this way
|
 |
Joe Ess
Bartender
Joined: Oct 29, 2001
Posts: 8262
|
|
|
You will probably have to make a custom type converter to override the default behavior.
|
"blabbing like a narcissistic fool with a superiority complex" ~ N.A.
[How To Ask Questions On JavaRanch]
|
 |
Raymond Holguin
Ranch Hand
Joined: Aug 11, 2009
Posts: 47
|
|
|
hmmm...yea i couldn't figured out how to get that to do what i wanted. so i just went with plan B which was use numeric keys, then once struts returned the unsorted hashmap i just sorted the keys and i got what i wanted.
|
 |
 |
|
|
subject: Force struts2 form to return LinkedHashMap?
|
|
|