Re: Object inside another Object

2003-03-24 Thread Nicolas De Loof
You should use the tag with Define a form-bean that will have a "contry" property, and two collections that will maintain labels and values for your options. Look at tag doc : http://jakarta.apache.org/struts/doc-1.0.2/struts-html.html#options This way you will have current selected value aut

Re: Object inside another Object

2003-03-24 Thread Kalaiselvan
yes. I'm using it in tag. I have a hashtable that contain countrycode, countrydesc <%if ( countries != null ) { Enumeration keys = countries.keys(); while ( keys.hasMoreElements() ) { String key = (String)keys.nextElement();

Re: Object inside another Object

2003-03-24 Thread Nicolas De Loof
Do you want your JSP to look different depending getAllowed() value or do you want your Action to get some checkbox or hidden value from HTML form ? Can you tell me what you want to do, not as technical but as application usage. I could so understand what you're looking for. Nico. > That is get

Re: Object inside another Object

2003-03-24 Thread Kalaiselvan
That is getAllowed() is return boolean. If it return true i will do something. If it returns false, i will do different . So i have to check values in my jsp page. Also i want to concat 2 or more return strings in my jsp. So it is must that i have to capture the values into some jsp varibles

Re: Object inside another Object

2003-03-24 Thread Nicolas De Loof
If you wan't the user to edit some datas, you should build a form-bean, put your model datas into it (use common-beanutil copyProperties, or an Adapter class) and use it in your JSP. When user submits, get the form-bean back with all updated datas inside it. What do you wan't to do (not technica

Re: Object inside another Object

2003-03-24 Thread Kalaiselvan
Hai Nicolas Great. Mr. Nicolas. Thanx for your help. This is exactly what i want. Thank you very much. I need another help. That' is i want to assiagn the return value into a varibale. how it is possible? <% String empName = null; %> i want to assigan that value to empName. Thanx Kalaiselva

Re: Object inside another Object

2003-03-24 Thread Nicolas De Loof
City : State : Country : Nico. > Hai Nicolas > Thanx for your reply. My problem is that bean propery return a Object. > That's public Object getSampe() { > } > ie public addressgetAddress() { > } > > public class Address { >private String _city;

Re: Object inside another Object

2003-03-24 Thread Kalaiselvan
Hai Nicolas Thanx for your reply. My problem is that bean propery return a Object. That's public Object getSampe() { } ie public addressgetAddress() { } public class Address { private String _city; private String _state; private String _country; public Strin

Re: Object inside another Object

2003-03-24 Thread Nicolas De Loof
You can use to get the content of your Vector, and then to get properties from your bean : Nico. > Hi All, > I want a help from you guys. I have created a sampleAction.class > using extend the Action class. This Action class create a Vector and put > it into Session. I have ret

Object inside another Object

2003-03-24 Thread Kalaiselvan
Hi All, I want a help from you guys. I have created a sampleAction.class using extend the Action class. This Action class create a Vector and put it into Session. I have retrieve using . But here i have some problem, because this getSample() method return vector. This vector has another b