i have a class like this
public class TDorgrnize{
private long orgID
private orgnizMini org
//getter and setters
}
public class orgnizMini{
long id
Sting name
//getter setter
}
in a action class i m getting this TDOrgrnize to generic list like this
private List<TDorgrnize>() torg;
so i want to display this List actually name property of orgnizMini in a select tag trough torg list so how can i do this guid me new to struts 2