hello 
Iam using Display tag in my Web project
My initial design to display data was like below

City     Area       Location <----- COLUMN HEADER
MUMBAI   ANDHERI    PLANETM   
         BANDRA     SKYSHOP

JAVA BEAN CLASS for above
public class CALlist
{
String cityname;
String areaname;
String locationname;
}


Well after completing the coding & making it live ,
the client wants to modify it as below shown
 
MUMBAI
Area       Location <----- COLUMN HEADER
ANDHERI    PLANETM   
BANDRA     SKYSHOP

I want to make use of the same arraylist for above
modification.
IS this Possible..

I think it is Possible using Nested Table
But for that i will have to change my javabean class
to

public class CALlist
{
String cityname;
Arraylist al;
//where AL will be made of a class ALlist 
}

public class ALlist
{
String areaname;
String locationname;
}

IS Above Solution correct

Please verify
thanks




                
__________________________________ 
Do you Yahoo!? 
The all-new My Yahoo! - Get yours free! 
http://my.yahoo.com 
 



-------------------------------------------------------
This SF.Net email is sponsored by: IntelliVIEW -- Interactive Reporting
Tool for open source databases. Create drag-&-drop reports. Save time
by over 75%! Publish reports on the web. Export to DOC, XLS, RTF, etc.
Download a FREE copy at http://www.intelliview.com/go/osdn_nl
_______________________________________________
displaytag-user mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/displaytag-user

Reply via email to