hello there again..
let me elaborate my question because i find it complicated.. :=)
The multibox property "bitrate" has 5 possible values in order{"500k","1M","2M","5M","6M"}
I can select any number of bitrate.
Question 1: if i choose to check 500k and 2M, the value of bitrate is
bitrate[0] = "500K"
bitrate[1] = "2M" ?
Now, after Ive selected 500K and 2M, i have to validate corresponding textbox for this bitrate.
Question 2: Im planning to do it this way on Validation.xml
for 500K validation,
i used bitrate[0] because its the only possible location for 500K..(dnt know if my idea is correct)
For 2M validation
i used bitrate[0],bitrate[1],bitrate[2] because i thought its the possible locations for 2M
Is this possible? because its not working for me, maybe i miss something.
also i declare bitrate in my Action form as
and my
jsp is
Please help me..im doing this for almost a day..
Its hard to be newbie.. :=)
Hiro
