Hi, im new to this forum but if have tried everything else and this is driving me a bit crazy. I am desperate for some help and I know this is going to be a realy simple thing its just my mind has gone dead with it.
I have the following :
Where it says name='airlineLo goFlt1', I want to replace the 1 in Flt1 with the value you of either a JSP variable F or a JavaScript variable f I don’t mind which one I have to use but basically I want to change the value of F/f to be able to change the number associated with the Flt.
When I try doing :
I get name="airlineLo goFlt<%= F %>"
I also want to do the same thing where it says attributesText= 'id="airlineLog oFlt1"' and I am also having trouble here as well.
Any help would be much appreciated.
Thanks in advance.
I have the following :
Code:
<input:select
bean="counterGroup"
name='airlineLogoFlt1'
attributes="<%= visibleDefaultAttr %>"
attributesText='id="airlineLogoFlt1"'
options="<%= airlineLogos %>"
default="<%= airlineLogoFlt[F] %>"
/>
When I try doing :
Code:
name='airlineLogoFlt<%= F %>'
I also want to do the same thing where it says attributesText= 'id="airlineLog oFlt1"' and I am also having trouble here as well.
Any help would be much appreciated.
Thanks in advance.
Comment