Hi everyone,
I am currently developing a Struts (1.3.10) application and I'm trying to show in a combo box a set of data. Every single option(row) is a String created by the union of 3 different Strings.
My question is if it's possible to tabulate that information in every option from the combo box, to show the information like the example you can see here:
Data1 | Data2 | Data3 DataLargerThan1 | Data2 | DataLargerThan3 DataMuchLargerThan1| DataLargerThan2 | Data3
it should be
Data1 | Data2 | Data3 DataLargerThan1 | Data2 | DataLargerThan3 DataMuchLargerThan1 | DataLargerThan2 | Data3
Is this possible? I'm trying to show formatted data with the pre
tag, but I haven't got any result yet.
Thanks in advance, Carlos