wt., 12 lip 2022 o 21:44 Krishnaraj Viswanathan
napisał(a):
>
> Hi,
> We upgrade our dev environment from Struts 2.5.30 to Struts 6.0.0
> and we found that our "s:select" tag with a "list" attribute of time
> intervals (list="#{'12:00
: 12 July 2022 18:08
To: user@struts.apache.org
Subject: [External] : Struts 6.0.0 Upgrade issue: Security Exception for
s:select list attribute that is quite long
Hi,
We upgrade our dev environment from Struts 2.5.30 to Struts 6.0.0
and we found that our "s:select" tag wi
Hi,
We upgrade our dev environment from Struts 2.5.30 to Struts 6.0.0
and we found that our "s:select" tag with a "list" attribute of time intervals
(list="#{'12:00':'12:00 PM', '12:30':'12:30 PM', '13:00':
pon., 21 lut 2022 o 22:09 Burton Rhodes napisał(a):
>
> Nice - that was it. Thanks!
>
> Is that in the documentation anywhere?
There is some reference here
https://struts.apache.org/tag-developers/ognl-basics
If you need more info I can try to extend the docs.
Regards
--
Łukasz
+ 48 606 323 1
Nice - that was it. Thanks!
Is that in the documentation anywhere?
On Mon, Feb 21, 2022 at 2:27 PM Lukasz Lenart
wrote:
> pon., 21 lut 2022 o 20:38 Burton Rhodes
> napisał(a):
> >
> > I am using the s:select tag and filling it with a List - pretty
> > basic. However
pon., 21 lut 2022 o 20:38 Burton Rhodes napisał(a):
>
> I am using the s:select tag and filling it with a List - pretty
> basic. However, I am wanting to change the value that is displayed by
> adding a character before the String, but I can't figure out how to
> reference th
I am using the s:select tag and filling it with a List - pretty
basic. However, I am wanting to change the value that is displayed by
adding a character before the String, but I can't figure out how to
reference the item itself (since it's not an object with properties).
The code bel
> foreach (c in countryList) if(c.countryId==selectedCountry) return c;
> }
> ...
> }
>
>
>
> Thanks for using Struts.
>
> Kind Regards.
>
> >-Original Message-
> >From: albert kao
> >Sent: Saturday, December 22, 2018 6:39 PM
> >To: Strut
t;From: albert kao
>Sent: Saturday, December 22, 2018 6:39 PM
>To: Struts Users Mailing List
>Subject: How to display both selected key and value of s:select
>
>I want to display both selected key and value of s:select.
>e.g. for the following codes, after I select key="2&qu
I want to display both selected key and value of s:select.
e.g. for the following codes, after I select
key="2", value="Canada"
and press the submit button.
Only the key "Country: 2" is displayed in the registerResult.jsp as desired.
How to make the value "Can
selected items on each
click and reselect all of them on each click too.
Regards.
>-Original Message-
>From: Kiran Kongala
>Sent: Saturday, July 14, 2018 3:32 PM
>To: Struts Users Mailing List
>Subject: Struts 2.5 S:Select tag with Multiple True
>
>Hi Guys,
Hi, kiran,
Have you tried with "value" property?
On Sat, Jul 14, 2018, 4:31 PM Kiran Kongala
wrote:
> Hi Guys,
>
> We are using Struts 2.5.13 in our Enterprise Java Application and one of
> the jsp page has many Struts Select tags with multiple=true(s:select
> mu
Hi Guys,
We are using Struts 2.5.13 in our Enterprise Java Application and one of
the jsp page has many Struts Select tags with multiple=true(s:select
multiple=true) .
I know that for selecting/deselecting multiple items in the list, we have
to hold the Ctrl Key.
But for the Users who are using
2017-11-20 14:30 GMT+01:00 heberr...@gmail.com :
> list="students" listKey="sid" listValue="name"
> value="defaultStudent.equals('true')"
> />
>
> I have a select tag as above. The Student object has a boolean value
> defaultStudent with getter isDefaultStudent. How to pre-select the default
>
On 11/20/2017 5:00 PM, heberr...@gmail.com wrote:
>list="students" listKey="sid" listValue="name"
> value="defaultStudent.equals('true')"
> />
>
> I have a select tag as above. The Student object has a boolean value
> defaultStudent with getter isDefaultStudent. How to pre-select the defa
I have a select tag as above. The Student object has a boolean value
defaultStudent with getter isDefaultStudent. How to pre-select the default
student based on this boolean value. Value accepts only static value, not
condition.
Thank you Lucasz for looking into this. Yes I Have all the setter and getter
for all the properties. Its working now. I just need to give the whole path of
the property in the s:select value attribute.
Like value="%{diseasetracking.diagnosisDTO.primaryDiagnosis}"
Because I have the p
2017-04-03 16:04 GMT+02:00 Kiran Kongala :
>
> listKey=*"dstLookupTypeId"*
>
Do you have a getter for this value? getDstLookupTypeId() ?
> listValue=*"lookupValue"*
>
Same here, do you have a getter? getLookupValue() ?
Regards
--
Łukasz
+ 48 606 323 122 http://www.lenart.org.pl/
PS. Do not inl
vice in action and if I assign that value to 'diagnosisDTO.primaryDiagnosis'
name in the action model, I thought it will pick that value as selected. If
I remove the listKey and list Value from the s:select tag, I am getting the
complete object in the drop down as below
s.But the value
> doesnt set the value back to the s:select drop down list.*
>
If you are comparing Strings why do use listKey and listValue? These
attributes are used to fetch an object's property and compare it with value
pointed by the "name" attribute.
Regards
--
Łukasz
+ 48 606 323 122 http://www.lenart.org.pl/
aryDiagnosis? If you do not get a value, then check to
> > make sure the path is right or that something is not wrong in your action
> > that is populating it. Also verify that the key property in your list is
> > the same type as the value being set, both Integer for exa
Hi Lulasz,
*I am not comparing the same objects.I am trying to compare the String to a
constant String.Still do I need to override the equals and hashCode
methods.*
*I added a tag in the jsp and I see the values.But the value
doesnt set the value back to the s:select drop down list.*
*The
is not wrong in your action
> that is populating it. Also verify that the key property in your list is
> the same type as the value being set, both Integer for example.
>
> On Apr 1, 2017 7:38 PM, Kiran Kongala wrote:
> Hi,
>
> I am trying to use the Struts2 s:select tag b
e a s:property to evaluate
>> diagnosisDTO.primaryDiagnosis? If you do not get a value, then check to
>> make sure the path is right or that something is not wrong in your action
>> that is populating it. Also verify that the key property in your list is
>> the same type as the
7 7:38 PM, Kiran Kongala wrote:
> Hi,
>
> I am trying to use the Struts2 s:select tag but the drop down value coming
> from the db is not being set to the drop down as selected value and the
> screen always shows the default first value in the list.
>
> Can some one please h
value being set, both Integer for example.
On Apr 1, 2017 7:38 PM, Kiran Kongala wrote:
Hi,
I am trying to use the Struts2 s:select tag but the drop down value coming
from the db is not being set to the drop down as selected value and the
screen always shows the default first value in the list
Hi,
I am trying to use the Struts2 s:select tag but the drop down value coming
from the db is not being set to the drop down as selected value and the
screen always shows the default first value in the list.
Can some one please help me.
*JSP Code*
*Action Class Code*
*I have Disease
2014-12-16 18:01 GMT+01:00 Roger Varley :
> No - that marks it for auto-scanning. In the meantime I've gone back to
> 2.3.16.1 and everything is working again :(
That won't help ;-) Can you share more details about your application
configuration? Or prepare a small demo app that behaves the same w
No - that marks it for auto-scanning. In the meantime I've gone back to
2.3.16.1 and everything is working again :(
Regards
On 16 December 2014 at 18:00, Lukasz Lenart wrote:
>
> 2014-12-16 15:23 GMT+01:00 Roger Varley :
> > import org.springframework.stereotype.Service;
> >
> > @Service
>
> Doe
2014-12-16 15:23 GMT+01:00 Roger Varley :
> import org.springframework.stereotype.Service;
>
> @Service
Doesn't this annotation define Singleton?
Regards
--
Łukasz
+ 48 606 323 122 http://www.lenart.org.pl/
-
To unsubscribe, e
2014-12-16 16:37 GMT+01:00 Sreekanth S. Nair :
> Hi Lukasz,
> Could it be the same problem what i was facing about rest
> plugin ?
Nope, your problem was missing configuration for coexisting normal web
app with rest endpoints
Regards
--
Łukasz
+ 48 606 323 122 http://www.lenart
Hi Lukasz,
Could it be the same problem what i was facing about rest
plugin ?
Hi Roger,
Don't know if you are using rest plugin, if so can remove
that plugin and try again ?
--
Thanks & Regards
Sreekanth S Nair
Java Developer
--
Oh bugger :( I've got actions failing all over the place - but strangely,
not all of them. The config-browser plugin see's my configured namespaces,
but lists no actions in any of them.
Regards
On 16 December 2014 at 16:23, Roger Varley
wrote:
>
> Yes, I do. I've checked - and calling the action
Yes, I do. I've checked - and calling the action directly from the browser
gives the same response. The action code is below.
Regards
package com.blackbox.x.actions.admin;
import java.util.List;
import org.springframework.stereotype.Service;
import com.blackbox.entities.db.Platform;
import com
2014-12-16 15:03 GMT+01:00 Roger Varley :
> Referring to the log file, the dump was preceded by the following few lines;
>
> 16 Dec 2014 15:44:09 ERROR ActionComponent,"http-bio-8080"-exec-5:42 -
> Could not execute action: /admin/list-platforms
> There is no Action mapped for namespace [/admin
Referring to the log file, the dump was preceded by the following few lines;
16 Dec 2014 15:44:09 ERROR ActionComponent,"http-bio-8080"-exec-5:42 -
Could not execute action: /admin/list-platforms
There is no Action mapped for namespace [/admin] and action name
[list-platforms] associated with
Can you post the whole log? Maybe there are some warnings
2014-12-16 14:48 GMT+01:00 Roger Varley :
> Hi
>
> After upgrading to 2.3.20 from 2.3.16.1 the following .jsp snippet fails to
> compile. Reverting back to 2.3.16.1 and it starts to work again.
>
>
> listValue=
Hi
After upgrading to 2.3.20 from 2.3.16.1 the following .jsp snippet fails to
compile. Reverting back to 2.3.16.1 and it starts to work again.
org.apache.jasper.JasperException: tag 'select', field 'list', name
'platformId': The requested list key '#list.platforms' could not be
re
required was renamed to requiredLabel
https://cwiki.apache.org/confluence/display/WW/Version+Notes+2.3.12.0
2014-03-26 22:37 GMT+01:00 :
> We upgraded from struts 2.3.8 to 2.3.16.
> Now any page that has a s:select or s:file tag with required="true" does not
> display.
&g
We upgraded from struts 2.3.8 to 2.3.16.
Now any page that has a s:select or s:file tag with required="true" does not
display.
s:textfield works fine
We are running Websphere 8
Can anyone corroborate?
Stacktrace follows:
[3/26/14 15:43:10:599 CDT] 0185 SystemOut O WebCont
for following jsp, i can retrieve the data from KeywordcategoryAction for no
problem,
the contents of retrieved list is
Motor
Electrical
Temperature
but, the default value(why) as defined from KeywordcategoryAction did not
wor
2013/7/31 CRANFORD, CHRIS :
> We just discovered that if a Map gets passed to a select-tag
> where the entry's key/value pair are ""/"" that the
> option's value attribute contains "" as one would have expected,
> but the body of the option-tag is empty as seen here
>
>
>
> There isn't
We just discovered that if a Map gets passed to a select-tag
where the entry's key/value pair are ""/"" that the
option's value attribute contains "" as one would have expected, but
the body of the option-tag is empty as seen here
There isn't a clean way to scrub this data to eliminat
On May 30, 2013, at 5:42 AM, Miguel Almeida wrote:
> That's an alternative, yes. I do tend to prefer having the model objects
> in my actions though, to keep the number of objects to a minimum - it
> makes more sense to have a List objects than an Integer[]
> ids, but maybe that's personal prefere
ks as expected (as evidenced by the test case
[1]). The challenge is to create an s:select that generates that request
parameters!
Miguel
[1] Unit Test snippet
request.setParameter("entity.entity2List[0].entity3.id", "2");
request.setParameter("e
ntity has a List entity2List
> - Entity2 has a Entity3 entity3
>
> Now, you need an s:select with multiple="true" to populate entity3. This
> corresponds to having a request in the form
> entity.entity2List[n].entity3.id (n=0,1,2...depending on how many items
> are selected).
>
eida wrote:
> Imagine you have the following scenario:
> - a property in your action: private Entity entity;
>
> - Entity has a List entity2List
> - Entity2 has a Entity3 entity3
>
> Now, you need an s:select with multiple="true" to populate entity3.
> This
&
Dear all,
Imagine you have the following scenario:
- a property in your action: private Entity entity;
- Entity has a List entity2List
- Entity2 has a Entity3 entity3
Now, you need an s:select with multiple="true" to populate entity3. This
corresponds to having a request i
à l'information
seulement et n'aura pas n'importe quel effet légalement obligatoire. Étant
donné que les email peuvent facilement être sujets à la manipulation, nous ne
pouvons accepter aucune responsabilité pour le contenu fourni.
> From: lukaszlen...@apache.org
> Date: Mon, 2
2012/11/21 Omar Colombari :
> I'm using
>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter
>
> Regarding WebSphere 6.x I'm not able to find any documentation on the
> problem.
As I said, it's really hard to debug your problem as I don't have
access to WebSphere 6.1 :\ But i
I'm using
org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter
Regarding WebSphere 6.x I'm not able to find any documentation on the
problem.
Omar.
2012/11/20 Omar Colombari :
> Server is Websphere 6.1
> Struts2 2.3.1.2
I suspected that it will be WebSphere :\ I think this will not help
http://struts.apache.org/2.x/docs/websphere.html
Do you use the new Filter or still base on FilterDispatcher ?
The problem is that I cannot test on WebSphe
Server is Websphere 6.1
Struts2 2.3.1.2
The jar list:
asm-3.3.jar
asm-commons-3.3.jar
commons-beanutils-1.7.0.jar
commons-codec-1.2.jar
commons-collections-3.1.jar
commons-digester-2.0.jar
commons-fileupload-1.2.2.jar
commons-io-1.3.2.jar
commons-io-2.0.1.jar
commons-lang-2.5.jar
commons-loggin
2012/11/19 Omar Colombari :
> The "s:select" component sometime has a wrong rendering. In the html page
> is shown as value of the options the object references (like @package.bean)
> or
> for the "s:select" component using fixed list value sometime is rendering
aps an
...
Marcus
-Original Message-
From: Christian Grobmeier [mailto:grobme...@gmail.com]
Sent: 11 August 2011 16:41
To: Struts Users Mailing List; em...@encs.concordia.ca
Subject: Re: how to make onchange in s:select to submit a form and call a
specific method in one action class
> O
> Or someone could provide more info will "sj:select" help satisfy the
> following requirement?
>
> (1)
> (2)
> (3)
>
> Actually, I prefer not to use complex javascript code to do change select1,
> select2 is updated, change select2, and select3 is updated.
No chance without javascript. There i
lues from a.jsp
database actions ... ...
return a.jsp;
}
I'd like to know:
===
When values changed in s:select, how to submit the form and call
change() method in Process.java
Thanks lot!
Emi
-
To
To: Struts Users Mailing List
> Subject: how to make onchange in s:select to submit a form
> and call a specific method in one action class
>
> Good morning,
>
> In struts2.2.3, how to submit a form to a predefined action?
>
> For example,
>
> (1) a.jsp
>
ed in s:select, how to submit the form and call
change() method in Process.java
Thanks lot!
Emi
-
To unsubscribe, e-mail: user-unsubscr...@struts.apache.org
For additional commands, e-mail: user-h...@struts.apache.org
When you invoking the page through the browser, you will be typing something
similar to this right?
*http://localhost:/app_name/action_name*
So it will be as *http://localhost:/app_name/Register.*
and i'm not sure whether mentioning *method="{1}"* will call the
*populate *method
there.
try by p
Hi All,
I need urgent help on this!
help greatly appreciated..been stuck on this for a LONG time!
it is not able to locate conditionList
Servlet.service() for servlet jsp threw exception
tag 'select', field 'list', name 'bookCondition': The requested list key
'conditionList' could not be resolv
Have you got this on top of JSPs?
<%@ page contentType="text/html; charset=UTF-8" %>
Patrick Cosmo, 15-12-2010 17:40:
Hi!
When using "s:select", if the list of data returned by my java class contains strings
that have unicode characters in them, "s:select&qu
I'm not aware of such behavior (I am Italian, and we use the accented
characters more than anything else).
Did you get some more details?(like struts version, stack trace)
Maurizio Cucchiara
Il giorno 15/dic/2010 18.40, "Patrick Cosmo" ha
scritto:
Hi!
When using "s:select&q
Hi!
When using "s:select", if the list of data returned by my java class contains
strings that have unicode characters in them, "s:select" fails to generate the
entire tag, it dies at the unicode character.
For example, this tag:
When "userTypeList" ha
On Sunday, October 31, 2010, Li Ying wrote:
> Try put them in same row of a table:
This will only work if you're not using a theme that renders layout,
as the default "xhtml" theme does.
Dave
-
To unsubscribe, e-mail: user-unsub
Try put them in same row of a table:
2010/11/1 cellterry :
>
> Dear all,
>
> I have a question about s:textfield or s:select with a command button just
> following it.
>
> For example, I have tried this:
>
>
>
>
> I found th
On Sun, Oct 31, 2010 at 2:27 PM, cellterry wrote:
> For example, I have tried this:
>
>
>
>
> [...] the button "..." is not following the [text field] but is on the next
> line.
What theme are you using? If you're using the default theme "xhtml"
this is what it should be doing; please notice th
Dear all,
I have a question about s:textfield or s:select with a command button just
following it.
For example, I have tried this:
I found that the button "..." is not following the selection box but is on
the next line.
Do anyone know how to correct the position so that it is j
i am too trying to do the same thing using checkbox
but the key value is not passed to getText()
if you come up with some way to achieve this please let us know
thanks in advance
On Tue, May 4, 2010 at 6:33 PM, RogerV wrote:
>
>
>
> Upasana Sharma wrote:
> >
> > listValue="%{getText('myCat
Maybe using OGNL along with #this or #attr . Haven't checked that out
but it should work some of these ways:
http://struts.apache.org/2.0.14/docs/ognl-basics.html
http://www.opensymphony.com/ognl/html/LanguageGuide/varref.html
Em 04-05-2010 14:03, RogerV escreveu:
Upasana Sharma wrote:
li
Upasana Sharma wrote:
>
> listValue="%{getText('myCategory.'+toString())}"
>
> this way i can change the select display value from .properties file
>
> in .properties i have to use
>
> myCategory.ELECTRIC= Electric
>
Neat. I'm trying to do the same thing with the tag.
http://old.nabble.c
is some function called ordinal() in enum. can
> anyone suggest how can i use it in s:select tag
>
>
>
> On Tue, May 4, 2010 at 12:01 PM, Upasana Sharma wrote:
>
>> Hi I am using s:select and populating it with enum .
>>
>>
>> the enum is like
>>
>&g
I have also seen that there is some function called ordinal() in enum. can
anyone suggest how can i use it in s:select tag
On Tue, May 4, 2010 at 12:01 PM, Upasana Sharma wrote:
> Hi I am using s:select and populating it with enum .
>
>
> the enum is like
>
> public e
Hi I am using s:select and populating it with enum .
the enum is like
public enum EComplaintType {
CLUB_HOUSE(0), ELECTRIC(1);
}
In the jsp the select is formed as
CLUB_HOUSE
ELECTRIC
Here both the key and value for the select are the same as the Name i
have given in enum
Hi Martin,
Thanks for the reply. I apologize if I was not clear earlier. Let me try to
rephrase my question again. The 'selected' value of the auto-select comes
from another bean property. The iterator is used to iterate over an action
specific bean property.
The s:select is u
pas n'importe
quel effet légalement obligatoire. Étant donné que les email peuvent facilement
être sujets à la manipulation, nous ne pouvons accepter aucune responsabilité
pour le contenu fourni.
> Date: Fri, 23 Apr 2010 17:11:24 -0700
> Subject: Setting selected with s:select tags
> F
Hi Kartik,
Remove the attribute value from your s:select tag, and in your action,
preset the value of your attribute actionStatus (on your Action class)
to "OPEN" or "CLOSED".
At least, it is working in my case. Let us know if it is not working for
you that way, and I
Kumar wrote:
> Hi Struts gurus,
>
> I am have an object level attribute that is selected from the s:select tag.
>
> list="#{'': 'Select One',
> 'bean.attributeValue':'bean.attributeValue', 'abc':'abc'}"
&
Hi Struts gurus,
I am have an object level attribute that is selected from the s:select tag.
If I want to set 'abc' to selected, then how do do that ? Any advice would
be welcome.
Thanks,
Kartik
I forgot (again) to say that the s:select tag is even not displayed on the
jsp. That's why i think it's a problem of populating, but i don't really
understand how the s:select will provide the Integer key to my class company
who is waiting for an Integer after the submit. Anyway
I tried this as well :
Regards,
On Tue, Apr 13, 2010 at 12:51 PM, Stephane Cosmeur wrote:
> Hello
>
> I know my problem is quite common but i can't figure out by google and
> myself, although many people had the same problem.
>
> I try to populate a s:select with a ma
Hello
I know my problem is quite common but i can't figure out by google and
myself, although many people had the same problem.
I try to populate a s:select with a map (Map, but i got the
(well known) following error :
tag 'select', field 'list', id 'typeCompanyENUM
Long
like so in your action:
private List test = new ArrayList();
plus the getters and setters (getTest(), setTest()).
test is the name you gave in the select ().
Struts2 will polulate the list with the selected ids.
Em 23-03-2010 02:43, red phoenix escreveu:
I have a jsp,it contains a s:select
-03-2010 02:43, red phoenix escreveu:
I have a jsp,it contains a s:select,like follows:
When this jsp submit,it will submit to a struts2 action,I want to know how
to get all id and name of s:select and how to get selected id and name of
s:select ?
How to do it? An example is better.
Thanks
I have a jsp,it contains a s:select,like follows:
When this jsp submit,it will submit to a struts2 action,I want to know how
to get all id and name of s:select and how to get selected id and name of
s:select ?
How to do it? An example is better.
Thanks!
Would using the optgroup tag in conjunction with the select tag meet your
needs? Refer to the HTML documentation:
http://struts.apache.org/2.0.14/docs/optgroup.html
--
View this message in context:
http://old.nabble.com/s%3Aselect-and-indents-tp27568708p27570656.html
Sent from the Struts - Use
Is it possible to use the s:select tag in order to render a list of
values by allowing spaces to be used to indent the options in a
tree-like hierarchy or is there another preferenced way of doing this?
I found in the select.ftl template where I could change
"${itemValue?html}" to &q
wild_oscar wrote:
>
>
> I am trying to pass the multple selected items on a s:select onto a
> List that I have on an "some" object:
>
> Some{
> List seriousness; ...}
>
> I am using spring to inject "some" in my action:
>
How can I use the tag in order to display a Map pair
without the displayed value being escaped? I am needing to indent
portions of the dropdown list like a parent/child and it appears the
default behavior is to escape my ampersand.
I can use an and combination to create the
dropdown but loo
the below code works to make the select option required. If nothing is selected
displays the provided message.
In validation.xml
!(user.department).equals("1")
Please select a department.
--
This message was sent on behalf of aruna
I am trying to pass the multple selected items on a s:select onto a
List that I have on an "some" object:
Some{
List seriousness; ...}
I am using spring to inject "some" in my action:
Using a:
I'm facing an issue: the some.seriousness is being injec
Try this:
2009/11/12 Ignacio de Córdoba
>
> Hello,
> I wonder if it is possible to make s:select tag localize the content of
> option elements. I am using:
>
> list="%{categories}" listKey="id" listValue="name" emptyOption="true"/&
acio de Córdoba
escribió:
>
> Hello,
> I wonder if it is possible to make s:select tag localize the content of
> option elements. I am using:
>
> list="%{categories}" listKey="id" listValue="name" emptyOption="true"/>
>
> I'd like
Hello,
I wonder if it is possible to make s:select tag localize the content of
option elements. I am using:
I'd like attribute listValue="name" property value if the objects iterated
not to be shown "as is" but to be used as a key to the language property
fi
Hi Musachy,
Thanks for the reply. I debugged and just found that the select tag could
not render "children[i]" as a list element.As I mentioned before if I change
children[i] to children(i), just to try whats happening, the page loads
fine.
Since we work on Agile and had a deadline of an hr or so,
can you debug it and see what is actually null? It seems like a bug.
That being said, I am building 2.1.8 as we speak, so if you are
planning to upgrade, it might be worth waiting a bit.
musachy
On Tue, Sep 22, 2009 at 3:44 PM, Anandkris wrote:
> OgnlValueStack
--
"Hey you! Would you help me
t.
In the following code s:textfield tag works fine but the s:select tag throws
a nullpointer exception.
///
children[%{#stat.index}] works great here
children[%{#stat.index}].beginAge throws null pointer
And the exception is :
SEVERE: Servlet.ser
ok... I found the way:
in the Action class, the list need to be create on the getter... thats all
Mileidys Gonzalez Prieto wrote:
Hi...
I'm getting an error when I run a page that contains a select tag and
the list call an element of type Map... I been searching on internet
and trying so many
Hi...
I'm getting an error when I run a page that contains a select tag and
the list call an element of type Map... I been searching on internet and
trying so many things without any success..
error info:
tag 'select', field 'list', name 'relation.relGender': The requested
list key 'rsGender'
listValue back to actionclass from s:select tag
I have a s:select tag which is working fine.
html code made out of that is:
Reason1*
Reason2
Reason3*
when user selects stuff from this select box and submits what is sent back
is listKey. Is there
1 - 100 of 237 matches
Mail list logo