-->
These old forums are deprecated now and set to read-only. We are waiting for you on our new forums!
More modern, Discourse-based and with GitHub/Google/Twitter authentication built-in.

All times are UTC - 5 hours [ DST ]



Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 2 posts ] 
Author Message
 Post subject: Problem in SelectList
PostPosted: Wed Sep 28, 2005 8:59 am 
Newbie

Joined: Wed Sep 28, 2005 8:46 am
Posts: 9
I want to display categoryId in the attribute "value" <html:option value="">. Can someone please help me how to do it. Here is the code.

<logic:present name="itemCategoryListBean" property="itemCategories">
<html:select name="itemCategoryListBean" property="itemCategories">
<logic:iterate name="itemCategoryListBean" property="itemCategories" id="categories">
<html:option value="">
<%--<bean:write name="categories" property="categoryId"/> --%>
<bean:write name="categories" property="categoryName"/>
</html:option>&nbsp;<br>
</logic:iterate>
</html:select>
</logic:present>


Top
 Profile  
 
 Post subject: that is for Struts forum actually
PostPosted: Thu Sep 29, 2005 3:20 pm 
Expert
Expert

Joined: Fri Jul 22, 2005 2:42 pm
Posts: 670
Location: Seattle, WA
If JSP-EL is enabled then:

<html:select name="itemCategoryListBean" property="itemCategories">
<logic:iterate name="itemCategoryListBean" property="itemCategoriesSource" id="category">
<html:option value="${category.id}">${category.categoryName}
</html:option>&nbsp;<br>
</logic:iterate>
</html:select>

or with <%= %>
and <bean:write name="category" property="categoryName"/>
if not

Note logic:iterate takes all the possible walues from "itemCategoriesSource" not from the receiver for selected properties (field itemCategories of your itemCategoryListBean ).
That might be slightly different, it is hard to say without looking at your code, but I hope you got the idea.

http://struts.apache.org/userGuide/stru ... tml#select

_________________
--------------
Konstantin

SourceLabs - dependable OpenSource systems


Top
 Profile  
 
Display posts from previous:  Sort by  
Forum locked This topic is locked, you cannot edit posts or make further replies.  [ 2 posts ] 

All times are UTC - 5 hours [ DST ]


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
© Copyright 2014, Red Hat Inc. All rights reserved. JBoss and Hibernate are registered trademarks and servicemarks of Red Hat, Inc.