please solve this question on html:multibox?

2010-02-12 Thread tejz
:-- MULTIBOX PERSONNAME INVITATIONLIST - -- - PROPERTY:-- [STRINGARRAY] [STRING] [STRINGARRAY] tabletr logic:iterate id=message name=MessageForm property=nameList td html:multibox name=FORM property=GETINVITATIONS bean:write name=FORM property=name / bean:write

question on html:multibox?

2010-02-12 Thread tejz
:-- MULTIBOX PERSONNAME INVITATIONLIST - -- - PROPERTY:-- [STRINGARRAY] [STRING] [STRINGARRAY] tabletr logic:iterate id=message name=MessageForm property=nameList td html:multibox name=FORM property=GETINVITATIONS bean:write name=FORM property=name / bean:write

html:multibox problem

2008-12-29 Thread m.harig
hello all I've got a ArrayList in my ActionForm like ArrayList alist = new ArrayList(); User user = new User(); user.setName(test1);

RE: html:multibox problem

2008-12-29 Thread Seshagiri V
PM To: user@struts.apache.org Subject: html:multibox problem hello all I've got a ArrayList in my ActionForm like ArrayList alist = new ArrayList(); User user = new User

RE: html:multibox problem

2008-12-29 Thread m.harig
thanks Mr.Seshagiri V , sorry .. this is my code ArrayList alist = new ArrayList(); for(int i=1;i=3;i++){ User user = new User(); user.setName(test+i);

Re: html:multibox read but not write

2008-05-08 Thread houser
Thanks for your reply.. I have already changed it by using tag and the JSP pieces of code are displayed.. can give it another look please? houser Laurie Harper wrote: None of the JSP code made it out of your mail client into the message I'm afraid. Try re-posting with your mail program

Re: html:multibox read but not write

2008-05-08 Thread houser
By the way.. to which email address should I post my message using the email program? is it: [EMAIL PROTECTED] or [EMAIL PROTECTED] thanks Laurie Harper wrote: None of the JSP code made it out of your mail client into the message I'm afraid. Try re-posting with your mail program set for

Re: html:multibox read but not write

2008-05-08 Thread Laurie Harper
Sorry, I don't see a repost with the JSP readable so there's still nothing to take another look at :-/ L. houser wrote: Thanks for your reply.. I have already changed it by using tag and the JSP pieces of code are displayed.. can give it another look please? houser Laurie Harper wrote:

Re: html:multibox read but not write

2008-05-08 Thread Laurie Harper
[EMAIL PROTECTED]; [EMAIL PROTECTED] would be the customer support channel for the Nabble list browser/forum system. L. houser wrote: By the way.. to which email address should I post my message using the email program? is it: [EMAIL PROTECTED] or [EMAIL PROTECTED] thanks Laurie Harper

Re: html:multibox read but not write

2008-05-08 Thread houser
tr td table border=0 tr logic:iterate id=pro name=funPro property=pros td html:multibox name=funPro property=selectedPros bean:write name=pro property=label

html:multibox read but not write

2008-05-07 Thread houser
Hi All, I am in very strange situation, and stuck! please help, I have found one thread that much more or less but does not help.. http://www.nabble.com/Check-a-multibox-dynamically-to6630704.html#a6630704 http://www.nabble.com/Check-a-multibox-dynamically-to6630704.html#a6630704 I have

Re: html:multibox read but not write

2008-05-07 Thread Laurie Harper
None of the JSP code made it out of your mail client into the message I'm afraid. Try re-posting with your mail program set for plain text instead of multipart/mime. L. houser wrote: Hi All, I am in very strange situation, and stuck! please help, I have found one thread that much more or

[S2] html:multibox in S2

2007-05-29 Thread Jiang, Jane (NIH/NCI) [C]
I am experiencing multi selection boxes in Struts 2. I have a list of checkboxes in a table that spreads to more than one page. I am using the displaytag for the table. Here is my attempt s:form name=grantResults display:table name=test id=grants ... display:column title=Select

Re: [s2] is there an equivalent for the old html:multibox tag?

2007-05-02 Thread Allen Gilliland
of checkboxes, i'm trying to print a single checkbox which is based on a list. it looks like that's what the old html:multibox tag was for, but i dunno, i didn't write the original code that i am updating :/ -- Allen Dave Newton wrote: --- Allen Gilliland [EMAIL PROTECTED] wrote

Re: [s2] is there an equivalent for the old html:multibox tag?

2007-05-01 Thread Allen Gilliland
of checkboxes, i'm trying to print a single checkbox which is based on a list. it looks like that's what the old html:multibox tag was for, but i dunno, i didn't write the original code that i am updating :/ -- Allen Dave Newton wrote: --- Allen Gilliland [EMAIL PROTECTED] wrote

Re: [s2] is there an equivalent for the old html:multibox tag?

2007-05-01 Thread Allen Gilliland
of checkboxes, i'm trying to print a single checkbox which is based on a list. it looks like that's what the old html:multibox tag was for, but i dunno, i didn't write the original code that i am updating :/ -- Allen Dave Newton wrote: --- Allen Gilliland [EMAIL PROTECTED] wrote

[s2] is there an equivalent for the old html:multibox tag?

2007-04-30 Thread Allen Gilliland
Is there a direct equivalent struts2 tag to the struts1 html:multibox tag? I am looking at some old code being migrated and i'm not sure how best to accomplish the same thing in struts2 ... c:forEach var=foo items=fooItems html:multibox property=fooList c:out property=${foo.id

Re: [s2] is there an equivalent for the old html:multibox tag?

2007-04-30 Thread Dave Newton
--- Allen Gilliland [EMAIL PROTECTED] wrote: Is there a direct equivalent struts2 tag to the struts1 html:multibox tag? I am looking at some old code being migrated and i'm not sure how best to accomplish the same thing in struts2 ... Does s:checkboxlist.../ not work for you? http

html:multibox

2006-10-19 Thread Krishna, Hari
Hi, I have a peculiar requirement . I have 8 check boxes and corresponding 8 text boxes for questions(8 question textboxes) and 8 text boxes for answers(8 answer text boxes).User checks the check box--enters the question in corresponding question textbox and enters the answer in the

Re: validate an html:multibox and show messages in the own page

2006-09-14 Thread Laurie Harper
Heidy Gutiérrez Guzmán wrote: Hi I'm using the html:multibox / struts tags. I need validate the total of checked that have been selected. I can do that with java script code, but i need put a var in the session scope with the purpose of show the error message later, and that, i can not do

validate an html:multibox and show messages in the own page

2006-09-12 Thread Heidy Gutiérrez Guzmán
Hi I'm using the html:multibox / struts tags. I need validate the total of checked that have been selected. I can do that with java script code, but i need put a var in the session scope with the purpose of show the error message later, and that, i can not do that with the java script code

Re: html:multibox problem

2006-07-21 Thread Antonio Petrelli
Vinicius Carvalho ha scritto: Hello there! I have a multibox on my jsp, that maps to a String[] id; property on my formbean. The problem is, when the user submits it, I get my Array filled, but the first position of the array is filled with a strange [EMAIL PROTECTED] string. Seems that some

html:multibox problem

2006-07-20 Thread Vinicius Carvalho
Hello there! I have a multibox on my jsp, that maps to a String[] id; property on my formbean. The problem is, when the user submits it, I get my Array filled, but the first position of the array is filled with a strange [EMAIL PROTECTED] string. Seems that some weird object had it toString()

Map-based html:multibox

2006-06-05 Thread Bourgon, Jean-Francois
Hello, I'm trying to assign html:multibox to a map object into my ActionForm. But it doesn't work, when I select multiple value only the first one is assign to the related map key. I only get a String object assign to my key instead of the expected String[]. Here is a sample of my jsp page

any help ?? Fwd: html:multibox validation using Struts Validator framework

2006-04-24 Thread HSS STANLEY
any help on this??? Date: Fri, 21 Apr 2006 11:00:34 -0700 (PDT) From: [EMAIL PROTECTED] Subject: html:multibox validation using Struts Validator framework To: user@struts.apache.org Hi I am trying to do a client side validation for html: multibox tag. I need to do client side

html:multibox validation using Struts Validator framework

2006-04-21 Thread HSS STANLEY
Hi I am trying to do a client side validation for html: multibox tag. I need to do client side validation if all the boxes are checked, before submitting the request. I tried using the depends=required rules in the validator-rules.xml. I see the JavaScript code in my jsp when I try

html:multibox validation using Struts Validator framework

2006-04-21 Thread HSS STANLEY
Hi I am trying to do a client side validation for html: multibox tag. I need to do client side validation if all the boxes are checked, before submitting the request. I tried using the depends=required rules in the validator-rules.xml. I see the JavaScript code in my jsp when I

html:multibox validation using Struts Validator framework

2006-04-20 Thread Stanley, Hazel
Hi I am trying to do a client side validation for html: multibox tag. I need to check if all the boxes are checked, before submitting the request. I tried using the required rules in the validator-rules.xml. I see the JavaScript code in my jsp when I try to view source but I'm not

Re: html:multibox is not sending the checked checkboxes value

2006-04-02 Thread Tarun Reddy
, bean:write tag nested in the html:multibox tag takes care of setting this value attirbute to the same as label. The HTML source also proved that this problem is not related to setting value attribute. Second point is, yeah there's a slight confusion in the use

Re: html:multibox is not sending the checked checkboxes value

2006-04-02 Thread Laurie Harper
=submit value=Submit/tr tr input type=checkbox name=denyCodes value=216216/tr tr input type=checkbox name=denyCodes value=415415/tr tr input type=checkbox name=denyCodes value=0505/tr Let me tell you, bean:write tag nested in the html:multibox tag takes care

Re: html:multibox is not sending the checked checkboxes value

2006-04-02 Thread 王曾wang_zeng
Thanks a lot.

Re: html:multibox is not sending the checked checkboxes value

2006-04-01 Thread 王曾wang_zeng
type=checkbox name=denyCodes value=216216/tr tr input type=checkbox name=denyCodes value=415415/tr tr input type=checkbox name=denyCodes value=0505/tr Let me tell you, bean:write tag nested in the html:multibox tag takes care of setting this value attirbute

html:multibox is not sending the checked checkboxes value

2006-03-31 Thread Tarun Reddy
Hi All, I've been wasting my time on one issue pertaining to html:multibox tag. I'm writing a code which should generate multiple checkboxes dynamically on a JSP page. The JSP should send the checked checkboxes value to the Action class. But it's not sending any values. I've tried many approaches

Re: html:multibox is not sending the checked checkboxes value

2006-03-31 Thread vijay venkataraman
attribute of multibox. It is the value you set that is posted back. I don't know much about bean and iteration tag. Regards, Vijay Venkataraman Tarun Reddy wrote: Hi All, I've been wasting my time on one issue pertaining to html:multibox tag. I'm writing a code which should generate multiple

Re: html:multibox is not sending the checked checkboxes value

2006-03-31 Thread Tarun Reddy
type=checkbox name=denyCodes value=216216/tr tr input type=checkbox name=denyCodes value=415415/tr tr input type=checkbox name=denyCodes value=0505/tr Let me tell you, bean:write tag nested in the html:multibox tag takes care of setting this value attirbute to the same

Re: html:multibox is not sending the checked checkboxes value

2006-03-31 Thread vijay venkataraman
value=0505/tr Let me tell you, bean:write tag nested in the html:multibox tag takes care of setting this value attirbute to the same as label. The HTML source also proved that this problem is not related to setting value attribute. Second point is, yeah there's a slight confusion in the use

Re: html:multibox is not sending the checked checkboxes value

2006-03-31 Thread Tarun Reddy
value=0505/tr Let me tell you, bean:write tag nested in the html:multibox tag takes care of setting this value attirbute to the same as label. The HTML source also proved that this problem is not related to setting value attribute. Second point is, yeah there's a slight confusion in the use

Re: html:multibox is not sending the checked checkboxes value

2006-03-31 Thread Tarun Reddy
=denyCodes value=0505/tr Let me tell you, bean:write tag nested in the html:multibox tag takes care of setting this value attirbute to the same as label. The HTML source also proved that this problem is not related to setting value attribute. Second point is, yeah there's a slight

Re: html:multibox is not sending the checked checkboxes value

2006-03-31 Thread Max Cooper
=centerinput type=submit value=Submit/tr tr input type=checkbox name=denyCodes value=216216/tr tr input type=checkbox name=denyCodes value=415415/tr tr input type=checkbox name=denyCodes value=0505/tr Let me tell you, bean:write tag nested in the html:multibox tag

html:multibox for multiplecolumns

2006-03-04 Thread makarand sonawane
Hi I want informatio on how I can display multiple check boxes using html:multibox in different columns For example i have a Array of size 25 and I want display the checkboxes in 5*5 table i.e each column of the table will have 5 check boxes and each row will 5 check boxes

html:multibox reset?

2005-12-27 Thread fea jabi
I am using html:multibox in my jsp. I am not sure when the reset method is needed. Not sure if I have to use it. I have declared my formbeans in config file itself. If I have to use how to use that? I am having the below code now to display a group of checkboxes in a column of a table

Re: html:multibox reset?

2005-12-27 Thread Laurie Harper
fea jabi wrote: I am using html:multibox in my jsp. I am not sure when the reset method is needed. Not sure if I have to use it. I have declared my formbeans in config file itself. If I have to use how to use that? Multibox is just another way of managing checkboxes, so the same caveats

Re: html:multibox with LabelValueBean

2005-12-22 Thread fea jabi
Thanks, Laurie. that worked. why is JSTL prefered over the logic tags? is there any doc I can read about the same? Thanks. From: Laurie Harper [EMAIL PROTECTED] Reply-To: Struts Users Mailing List user@struts.apache.org To: user@struts.apache.org Subject: Re: html:multibox

Re: html:multibox with LabelValueBean

2005-12-22 Thread Pazhanikanthan Periasamy
to Struts Users Mailing List user@struts.apache.org To user@struts.apache.org cc Subject Re: html:multibox with LabelValueBean Thanks, Laurie. that worked. why is JSTL prefered over the logic tags? is there any doc I can read about the same? Thanks. From: Laurie Harper [EMAIL PROTECTED

Re: html:multibox with LabelValueBean

2005-12-22 Thread Srinivas Jadcharla
Mailing List user@struts.apache.org To user@struts.apache.org cc Subject Re: html:multibox with LabelValueBean Thanks, Laurie. that worked. why is JSTL prefered over the logic tags? is there any doc I can read about the same? Thanks. From: Laurie Harper [EMAIL PROTECTED

Re: html:multibox with LabelValueBean

2005-12-22 Thread Pazhanikanthan Periasamy
Please respond to Struts Users Mailing List user@struts.apache.org To Struts Users Mailing List user@struts.apache.org cc Subject Re: html:multibox with LabelValueBean I think its always better to use Struts taglibs where ever it is possible because of less coding.Where exactly we need JSTL

Re: html:multibox with LabelValueBean

2005-12-22 Thread Srinivas Jadcharla
: html:multibox with LabelValueBean I think its always better to use Struts taglibs where ever it is possible because of less coding.Where exactly we need JSTL(Wild guess .where its not possible with Struts tag libs?) .Correct me if iam wrong On 12/22/05, Pazhanikanthan Periasamy [EMAIL

Re: html:multibox with LabelValueBean

2005-12-22 Thread Pazhanikanthan Periasamy
To Struts Users Mailing List user@struts.apache.org cc Subject Re: html:multibox with LabelValueBean I may be wrong but i saw in some situations i dont have proper tag libs in struts. On 12/22/05, Pazhanikanthan Periasamy [EMAIL PROTECTED] wrote: Apache Struts developers are very very clever

Re: html:multibox with LabelValueBean

2005-12-22 Thread Craig McClanahan
On 12/22/05, fea jabi [EMAIL PROTECTED] wrote: Thanks, Laurie. that worked. why is JSTL prefered over the logic tags? is there any doc I can read about the same? Thanks. A couple of reasons I (as the original developer of the logic tags :-) prefer the JSTL versions: * The expression

html:multibox with LabelValueBean

2005-12-21 Thread fea jabi
Trying to use html:multibox with LabelValueBean. Getting error doing the same. form-bean form-property name=Items type=java.util.ArrayList[]/ form-property name=SelectedItems type=java.util.ArrayList[]/ /form-bean In prepare Action

Re: html:multibox with LabelValueBean

2005-12-21 Thread Laurie Harper
fea jabi wrote: Trying to use html:multibox with LabelValueBean. Getting error doing the same. form-bean form-property name=Items type=java.util.ArrayList[]/ form-property name=SelectedItems type=java.util.ArrayList[]/ /form-bean In prepare Action

Re: How to disable a particular selected checkbox in html:multibox

2005-11-16 Thread Laurie Harper
=disease property=label/ html:multibox property=selectedItems /html:multibox /logic:iterate /logic:iterate Someone please help me. From the documentation [1]: Renders an HTML input element of type checkbox, whose checked status is initialized based on whether the specified value matches one

How to disable a particular selected checkbox in html:multibox

2005-11-14 Thread sma3har
/ html:multibox property=selectedItems /html:multibox /logic:iterate /logic:iterate Someone please help me. __ Start your day with Yahoo! - Make it your home page! http://www.yahoo.com/r/hs

How to use html:multibox / with values stored in the request or page context

2005-08-14 Thread Néstor Boscán
Hi How can I use html:multibox / or html:checkbox / with values that are stored in the request or page context?. I would like to do something like html:multibox value=%= request.getAttribute (\value\) %/ without using the % % tags. Is there a way to use the JSTL Expression Language or tell

Re: How to use html:multibox / with values stored in the request or page context

2005-08-14 Thread Laurie Harper
Néstor Boscán wrote: How can I use html:multibox / or html:checkbox / with values that are stored in the request or page context?. I would like to do something like html:multibox value=%= request.getAttribute (\value\) %/ without using the % % tags. Is there a way to use the JSTL Expression

Re: How to use html:multibox / with values stored in the request or page context

2005-08-14 Thread Wendy Smoak
From: Néstor Boscán [EMAIL PROTECTED] How can I use html:multibox / or html:checkbox / with values that are stored in the request or page context?. I would like to do something like html:multibox value=%= request.getAttribute (\value\) %/ without using the % % tags. Is there a way to use

RE: How to use html:multibox / with values stored in the request or page context

2005-08-14 Thread Néstor Boscán
Hi Wendy Thanks for the reply. The problem is that in the form bean you only set the values of the html:multibox / or html:checkbox / that are selected, not all of them. So to draw all of them you need to take the values from somewhere else, tipically an object that is in request or session

Re: How to use html:multibox / with values stored in the request or page context

2005-08-14 Thread Wendy Smoak
From: Néstor Boscán [EMAIL PROTECTED] The problem is that in the form bean you only set the values of the html:multibox / or html:checkbox / that are selected, not all of them. So to draw all of them you need to take the values from somewhere else, tipically an object that is in request

RE: How to use html:multibox / with values stored in the request or page context

2005-08-14 Thread Néstor Boscán
Thanks Wendy Regards, Néstor Boscán -Mensaje original- De: Wendy Smoak [mailto:[EMAIL PROTECTED] Enviado el: Sunday, August 14, 2005 6:08 PM Para: Struts Users Mailing List Asunto: Re: How to use html:multibox / with values stored in the request or page context From: Néstor Boscán

Re: How to use html:multibox / with values stored in the request or page context

2005-08-14 Thread Laurie Harper
Wendy Smoak wrote: From: Néstor Boscán [EMAIL PROTECTED] How can I use html:multibox / or html:checkbox / with values that are stored in the request or page context?. I would like to do something like html:multibox value=%= request.getAttribute (\value\) %/ without using the % % tags

html:multibox -- is this a bug

2005-06-03 Thread Qinjian Jian
Greeting: I am using html:multibox tag on a jsp page. The scope of form bean associated with this jsp page is session. The Struts version is 1.1. I first check some of checkboxes and then refresh the page. The bean's property, i.e. selectedUsers (a String array), got populated and jsp page

Re: html:multibox -- is this a bug

2005-06-03 Thread Wendy Smoak
From: Qinjian Jian [EMAIL PROTECTED] Next, if I just unchecked some of checked checkboxes rather then all of them, then refresh the page it still works fine. However, if I unchecked them all then refresh the page, the previous step checked boxed remained unchanged and still were checked. I

RE: html:multibox -- is this a bug

2005-06-03 Thread Qinjian Jian
Yes. That's it. Thanks a lot. Tim Jian Momentum systems, Inc. -Original Message- From: Wendy Smoak [mailto:[EMAIL PROTECTED] Sent: Friday, June 03, 2005 11:27 AM To: Struts Users Mailing List Subject: Re: html:multibox -- is this a bug From: Qinjian Jian [EMAIL PROTECTED] Next, if I

html:multibox question

2005-05-25 Thread Apte, Dhanashree (Noblestar)
I have a page that has a series of check-boxes that a user can select/deselect at will. When the page loads up, some of the checkboxes are already checked. The user can then either select new ones or deselect existing ones. However, when I submit the page, the unselected ones are still a part of

RE: html:multibox question

2005-05-25 Thread meyawn
- From: Apte, Dhanashree (Noblestar) [mailto:[EMAIL PROTECTED] Sent: Thursday, May 26, 2005 12:21 AM To: 'Struts Users Mailing List' Subject: html:multibox question I have a page that has a series of check-boxes that a user can select/deselect at will. When the page loads up, some

Re: html:multibox question

2005-05-25 Thread Wendy Smoak
From: Apte, Dhanashree (Noblestar) [EMAIL PROTECTED] How do I make sure that only the selected ones get through? http://struts.apache.org/userGuide/struts-html.html#multibox WARNING: In order to correctly recognize cases where none of the associated checkboxes are selected, the ActionForm

html:multibox

2005-04-18 Thread Riyaz Mansoor
hi reading from past postings this subject has been much talked about. but not finding a solution to my liking i post this question. i want a user a see a set of checkboxes some selected some not. the user is allowed to check uncheck anyone of them. upon form submission, i want the value of the

html:multibox nested within a c:forEach Help!

2005-04-15 Thread David Johnson
Hi all I have the following, with the goal being to allow the user to select multiple portfolios, which I can then access in the action class. JSP: c:forEach var=portfolio items=${userPortfolios} html:multibox value= c:out value='${portfolio.portfolioName}'/ property=userPortfolio / c:out

Re: html:multibox nested within a c:forEach Help!

2005-04-15 Thread gdeschen
PROTECTED] 15/04/2005 12:42 PM Please respond to Struts Users Mailing List To: Struts Users Mailing List user@struts.apache.org cc: (bcc: Glenn Deschenes/NAT/CMHC-SCHL/CA) Subject:html:multibox nested within a c:forEach Help! Classification: Hi all I

Re: html:multibox nested within a c:forEach Help!

2005-04-15 Thread David Johnson
) Subject:html:multibox nested within a c:forEach Help! Classification: Hi all I have the following, with the goal being to allow the user to select multiple portfolios, which I can then access in the action class. JSP: c:forEach var=portfolio items=${userPortfolios

Re: html:multibox nested within a c:forEach Help!

2005-04-15 Thread gdeschen
user@struts.apache.org cc: (bcc: Glenn Deschenes/NAT/CMHC-SCHL/CA) Subject:Re: html:multibox nested within a c:forEach Help! Classification: Are there any resources you can point me to? On 4/15/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: David, Sounds like

Re: html:multibox nested within a c:forEach Help!

2005-04-15 Thread David Johnson
Users Mailing List user@struts.apache.org cc: (bcc: Glenn Deschenes/NAT/CMHC-SCHL/CA) Subject:Re: html:multibox nested within a c:forEach Help! Classification: Are there any resources you can point me to? On 4/15/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote

Re: html:multibox nested within a c:forEach Help!

2005-04-15 Thread David Johnson
List user@struts.apache.org cc: (bcc: Glenn Deschenes/NAT/CMHC-SCHL/CA) Subject:Re: html:multibox nested within a c:forEach Help! Classification: Are there any resources you can point me to? On 4/15/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: David

RE: html:multibox nested within a c:forEach Help!

2005-04-15 Thread Slattery, Tim - BLS
This looks like exactly what I need. I cant seem to find the proper home page for the struts-el subproject however. I assume I need struts-bean-el.tld struts-html-el.tld struts-logic-el.tld struts-el.jar Anyone using this that can give me a starting point? I have those, plus the

RE: html:multibox nested within a c:forEach Help!

2005-04-15 Thread Slattery, Tim - BLS
if I'm using the Struts-EL version of the tags do I simply REMOVE the references to the old struts tags, or is it proper for them to coexist? I assume they ca coexist since not all of them have been ported. They can co-exist, as long the prefix attribute in the taglib directive is

Re: html:multibox nested within a c:forEach Help!

2005-04-15 Thread David Johnson
Where do you get all the struts-el stuff? dos it come bundles with Struts 1.2.4? On 4/15/05, Slattery, Tim - BLS [EMAIL PROTECTED] wrote: if I'm using the Struts-EL version of the tags do I simply REMOVE the references to the old struts tags, or is it proper for them to coexist? I assume

Re: html:multibox nested within a c:forEach Help!

2005-04-15 Thread David Johnson
OH MY GOD IT WORKS For Future Reference: OLD: c:forEach var=refPortfolio items=${refPortfolios} html:multibox value= c:out value='${portfolio.portfolioName}'/ property=userPortfolio / /c:forEach NEW: c:forEach var=refPortfolio items=${refPortfolios} html:multibox value

RE: html:multibox nested within a c:forEach Help!

2005-04-15 Thread Slattery, Tim - BLS
I am now mixing JSTL, Struts-EL and Struts (garden variety) tags. Does this eem strange or like S.O.P? I use JSTL and struts-el tags together all the time. Of course, most of my struts tags don't use EL, so they look like original Struts stuff. That way, if I need EL in a tag, I just put it

html:multibox

2005-04-12 Thread Riyaz Mansoor
hi reading from past postings this subject has been much talked about. but not finding a solution to my liking i post this question. i want a user a see a set of checkboxes some selected some not. the user is allowed to check uncheck anyone of them. upon form submission, i want the value of the

html:checkbox or html:multibox- question in implementation

2005-01-21 Thread Rosemary Philip
this via html:multibox --Now trying to implement checkboxes- !-- definitions in the jsp-- bean define id=modifyForm name=%=Constants.MODIFY_FORM% scope=sessiontype=com.web.forms.ModifyForm/ bean efine id=techAL name=%=Constants.TECH_LIST% scope

Re: Use JSTL with html:multibox tag

2004-11-16 Thread andy wix
Thanks for the input - i've had a play and can't get it to work and now my patience has timed out so i'll use the logic:iterate method instead. Thanks, Andy _ Use MSN Messenger to send music and pics to your friends

Use JSTL with html:multibox tag

2004-11-15 Thread andy wix
=${service.status}property=selectedServices/html:multibox/TD /TR /c:forEach where services is an ArrayList in session with all available services and selectedServices is the array of Strings in my form class. The above displays all the values in services correctly but doesn't exhibit any

RE: Use JSTL with html:multibox tag

2004-11-15 Thread Robert Taylor
Andy, try this: c:forEach var=service items=${services} varStatus=status TR TDc:out value=${service.name}//TD TDhtml:multibox property=selectedServices[${status.index}]c:out value=${service.status}//html:multibox/TD /TR /c:forEach If the selectedServices is an array of Strings

RE: Use JSTL with html:multibox tag

2004-11-15 Thread andy wix
TDc:out value=${service.name}//TD TD html:multibox name=serviceForm property=selectedServicesc:out value=${service.status}/ /TD /TR /c:forEach This is a step in the right direction but still doesn't work (the checkboxes aren't checked when viewing the page even though they should be set

RE: Use JSTL with html:multibox tag

2004-11-15 Thread Robert Taylor
:[EMAIL PROTECTED] Sent: Monday, November 15, 2004 12:59 PM To: [EMAIL PROTECTED] Subject: RE: Use JSTL with html:multibox tag Hi, Thanks for the input Robert, but the array will be shorter than the arraylist whenever a checkbox is not selected. I've had a look at Rick Reumann's Struttin

Re: Question regarding html:multibox value

2004-11-01 Thread t t
Thanks. I got it work by using bean:wirte to assign the value to the multibox. João Vieira da Luz [EMAIL PROTECTED] wrote:Maybe it's because html:multibox doesn't support el... You could try to use struts-el tag library. On Fri, 29 Oct 2004 07:14:26 -0700 (PDT), t t wrote: Hi, all, I

Question regarding html:multibox value

2004-10-29 Thread t t
Hi, all, I have such code: - c:forEach var=person begin=0 items=${sessionScope.searchResult} tr tdhtml:multibox property=smultibox value=${person.userID} //td /tr /c:forEach -- Where

Re: Question regarding html:multibox value

2004-10-29 Thread João Vieira da Luz
Maybe it's because html:multibox doesn't support el... You could try to use struts-el tag library. On Fri, 29 Oct 2004 07:14:26 -0700 (PDT), t t [EMAIL PROTECTED] wrote: Hi, all, I have such code: - c:forEach var=person begin=0 items

Fw: html:multibox problem!!

2004-09-06 Thread RamKumar
to the same page for editing, checkbox in position(1,0) is checked instead of checkbox(1,1). Why it is happening like this?. Any clues?. This is my JSP code. html:multibox name=SurveyCreateForm property=pageValue[${pageNo}].questionValue[${questionNo}].skipLogic[${stat us.index

html:multibox problem!!

2004-09-01 Thread RamKumar
) is checked instead of checkbox(1,1). Why it is happening like this?. Any clues?. This is my JSP code. html:multibox name=SurveyCreateForm property=pageValue[${pageNo}].questionValue[${questionNo}].skipLogic[${status.index}].selectedChoices[${status1.index}][${status2.index}] value

Error: html:multibox, backbutton, BeanPopulate Exception (IndexOutOfBoundsException)

2004-07-22 Thread Georg Filios
Hi, I am having a unnices error, which I can't solve. Even I am having found any hints in the archives, making me very nervous, that I totally messed up some concepts. Here is my Problem: I am using a html:multibox to select some entries (the number of the entries, is dynamic) i.e 5

RE: Error: html:multibox, backbutton, BeanPopulate Exception (IndexOutOfBoundsException)

2004-07-22 Thread Raghuram Kanadam
George are you looking from preventing the user from going back or are you looking for preventing caching? -Original Message- From: Georg Filios [mailto:[EMAIL PROTECTED] Sent: Thursday, July 22, 2004 3:06 PM To: [EMAIL PROTECTED] Subject: Error: html:multibox, backbutton, BeanPopulate

Re: Error: html:multibox, backbutton, BeanPopulate Exception (IndexOutOfBoundsException)

2004-07-22 Thread Georg Filios
? -Original Message- From: Georg Filios [mailto:[EMAIL PROTECTED] Sent: Thursday, July 22, 2004 3:06 PM To: [EMAIL PROTECTED] Subject: Error: html:multibox, backbutton, BeanPopulate Exception (IndexOutOfBoundsException) Hi, I am having a unnices error, which I can't solve. Even I am having found

Re: Error: html:multibox, backbutton, BeanPopulate Exception (IndexOutOfBoundsException)

2004-07-22 Thread Georg Filios
, 2004 3:06 PM To: [EMAIL PROTECTED] Subject: Error: html:multibox, backbutton, BeanPopulate Exception (IndexOutOfBoundsException) Hi, I am having a unnices error, which I can't solve. Even I am having found any hints in the archives, making me very nervous, that I totally messed up some concepts

RE: Error: html:multibox, backbutton, BeanPopulate Exception (IndexOutOfBoundsException)

2004-07-22 Thread Raghuram Kanadam
: html:multibox, backbutton, BeanPopulate Exception (IndexOutOfBoundsException) Hi, i am looking for preventing caching. So I am responsible on the server side, no matters what the users browser is. Regards, georg Am 22.07.2004 um 11:36 schrieb Raghuram Kanadam: George are you looking from

RE: Error: html:multibox, backbutton, BeanPopulate Exception (IndexOutOfBoundsException)

2004-07-22 Thread rahul.chaudhary
which can prevent the user from entering into an action other than the predefined order of action ... Rahul -Original Message- From: Georg Filios [mailto:[EMAIL PROTECTED] Sent: Thursday, July 22, 2004 3:18 PM To: Struts Users Mailing List Subject: Re: Error: html:multibox, backbutton

Re: Error: html:multibox, backbutton, BeanPopulate Exception (IndexOutOfBoundsException)

2004-07-22 Thread Georg Filios
Hi Raghuram and Raul, thanks for your tips!!! I tried the caching tips, but the didnt worked on my apple using safari browser! Tip 1 did not help % response.setHeader (cache-control, no-cache); response.setHeader (expires, -1); % Tip 2: did not help and the configuration in

SV: Problem with html:multibox not clearing

2004-03-31 Thread hermod . opstvedt
Kennedy [mailto:[EMAIL PROTECTED] Sendt: 30. mars 2004 22:06 Til: 'Struts Users Mailing List' Emne: Problem with html:multibox not clearing I am using an html:multibox that is pretty much working fine except when I uncheck all choices. I am also using the logic:iterate tag to generate many