Re: Hidden input controls losing their position

2008-02-06 Thread Richard Hoberman
Andreas Andreou wrote: One solution is this: Use one hidden for all the values... Then, in java public String getOrdering() {return null} public void getOrdering(String value) { String[] order = value.split(','); .. } Then have your javascript set that value correctly before submit Tha

Re: Hidden input controls losing their position

2008-02-05 Thread Andreas Andreou
One solution is this: Use one hidden for all the values... Then, in java public String getOrdering() {return null} public void getOrdering(String value) { String[] order = value.split(','); .. } Then have your javascript set that value correctly before submit Also, if you're having trouble

Hidden input controls losing their position

2008-02-05 Thread Richard Hoberman
Hi All I want to track the order of list items that are re-ordered via javascript. My proposed solution is to do something like this: value="ognl:currentItem"> /> //various item data displayed