Java Mailing List Archive

http://www.gg3721.com/

Home » Struts Users Mailing List »

user Digest 3 Mar 2010 14:22:00 -0000 Issue 9017

user-digest-help

2010-03-03


Author LoginPost Reply

user Digest 3 Mar 2010 14:22:00 -0000 Issue 9017

Topics (messages 205192 through 205210):

Action tag: execute method not being called
 205192 by: adam pinder

Inserting data into nested collections
 205193 by: Alex
 205194 by: adam pinder
 205195 by: Alex
 205198 by: adam pinder
 205201 by: Alex

Struts 2 release inquiry
 205196 by: Jevica Arianne B. Zurbano
 205200 by: Martin Gainty

Struts 2 - Validation - Different jsp, one save method
 205197 by: Julien ROTT

Action tag: execute method not being calledþ
 205199 by: adam pinder

Struts 2 tooltip is not working
 205202 by: nani2ratna

horizontal scroll in <s:select>
 205203 by: lucas owen

Struts 2, Log4J and turning off WARNING messages
 205204 by: carl ballantyne

Re : Struts 2 tooltip is not working
 205205 by: Frederik Minatchy
 205206 by: nani2ratna
 205207 by: adam pinder
 205208 by: nani2ratna
 205209 by: Lukasz Lenart
 205210 by: Frederik Minatchy

Administrivia:

---------------------------------------------------------------------
To post to the list, e-mail: user@(protected)
To unsubscribe, e-mail: user-digest-unsubscribe@(protected)
For additional commands, e-mail: user-digest-help@(protected)

----------------------------------------------------------------------


Attachment: user_205192.ezm (zipped)


BACKGROUND:

I have the following line in a jsp page that is shown after login

<s:action name="TeamActivity!execute" executeResult="false"><s:param name="action">find</s:param><s:param name="teamActivity.selectedActivity">MyActivity</s:param><s:param name="teamActivity.dateFrom" value="dateFrom"/><s:param name="teamActivity.dateTo" value="dateTo"/><s:param name="calledFromWelcomeSummary">Yes</s:param></s:action>

This action simply gathers data and stores it in a session object.

Later on in the same jsp page i then have lines like

<img src="GenerateChart.action?action=activityTasksUpdatedPie" border="0" width="370px" height="370px"/>

The GenerateChart action uses the session object (from TeamActivity action) containing the data to render a pie chart - the reason for the session object is that i call several GenerateChart actions from this page rendering various charts all from the same data and thought it was more efficient than retrieving the data each time.

PROBLEM:

In Internet Explorer and Firefox all works well, i can see the TeamActivity action parameters being passed, the prepare, validate and execute methods firing, the data is retrieved and i get all the charts displayed.

In Safari (trying to be iphone friendly) the parameters are passed, prepare and validate methods fire but the execute method is not called. I have even removed all content from validate method (in case some parameter is invalid now) and still execute method doesn't get called.

I thought this processing was purely server side so i don't understand why Safari makes any difference.

Any thoughts on why Safari is having this influence gratefully received.

thanks
adam
           
_________________________________________________________________
Tell us your greatest, weirdest and funniest Hotmail stories
http://clk.atdmt.com/UKM/go/195013117/direct/01/

Attachment: user_205193.ezm (zipped)
Hi list,


I am having hard time figuring out how to solve what seems to be a somewhat
trivial problem ...

I am using Struts 2 and OGNL in my JSP to send textfield values in my Action
Class

The struts Action looks something like this :

public class MyAction extends ActionSupport {

    HashMap<String, ArrayList<String>> customAltTerms = new
HashMap<String, ArrayList<String>>();

    /**
    * @return the customAltTerms
    */
    public HashMap<String, ArrayList<String>> getCustomAltTerms() {
         return customAltTerms;
    }

    /**
    * @param customAltTerms the customAltTerms to set
    */
    public void setCustomAltTerms(HashMap<
String, ArrayList<String>> customAltTerms) {
         this.customAltTerms = customAltTerms;
    }


public String execute() throws Exception{

.... some code here to test what's in the hashmap after the form has been
submited

}

.... other methods of the Action class


}



I am unable to insert the data collected from the textfields of the form
into the HashMap.


I have tried the following in my JSP :


<s:textfield name="customAltTerms['someKey1'].value" />

or


<s:textfield name="customAltTerms['someKey1'].value[0]" />

or

<s:textfield name="customAltTerms['someKey1'][0]" />

or

<s:textfield name="customAltTerms['someKey1'].[0]" />


I almost always end up with java.lang.String cannot be cast to
java.util.ArrayList
java.lang.ClassCastException: java.lang.String cannot be cast to
java.util.ArrayList
etc ...

I also tried replacing the ArrayList with a String[] with the same result
(ClassCastException).

However if I use a HashMap<String, String> the key and the value are
populated correctly.But of course I only get one value per key which is not
what I intend to do.

What syntax must I use in the "name" attribute of the textfield to have the
actual value of the textefield inserted in the ArrayList containend in the
HashMap for the given key?


Thank you for helping me.

Attachment: user_205194.ezm (zipped)


Alex,

i used the following and it worked ok with struts2.

In JSP :-

<s:textfield name="opportunity.opportunityItem[0].quantity" value="12" size="5" maxlength="5" theme="simple" cssClass="mandatory" onblur="setListPrice(%{#rowstatus.index})"/>

In Action, i have a get/set for opportunity which is an object with the following property (with get/setters)

  private Collection opportunityItems = new ArrayList(0);

and the following additional method in the opportunity class

   public OpportunityItem getOpportunityItem(int occ)
   {
    Collection coll = this.getOpportunityItems();
    Object[] objs = coll.toArray();
   
    OpportunityItem oppItem = null;
    if (objs[occ] instanceof OpportunityItem)
    {    
    oppItem = (OpportunityItem)objs[occ];
    }
   
    return oppItem;
   }

you could cast the collection to ArrayList and use .get(occ) but i wanted to be able to change collection type.

struts2 then takes "opportunity.opportunityItem[0].quantity" and does...

getOpportunity().getOpportunityItem(0).setQuantity(12)

i've found the utility methods are sometimes needed to handle arrays.

if it was just a repeating field you could define a String[] and have the fields with the same name and struts would populate it for you.

regards
adam            
_________________________________________________________________
Do you have a story that started on Hotmail? Tell us now
http://clk.atdmt.com/UKM/go/195013117/direct/01/

Attachment: user_205195.ezm (zipped)
Thanks Adam for the fast reply.

I'm not sure howver that your solution would solve my problem. I'll try to
inspire from it however : )

I found this issue which looks pretty much related to my problem :

http://jira.opensymphony.com/browse/XW-408

Is this a known issue in Struts 2 and OGNL ?

Thansk you for your help and suggestions !

Attachment: user_205198.ezm (zipped)


Alex,

just checked my code again and it required me to handle the parameters myself - i added some code into the prepare method and checked request parameters and updated the arraylist myself (it was a while ago i had this problem).

In struts1 it would have worked, i couldn't get it to work properly in struts2 even though forum suggestions etc say it should work.

Apologies for my initial email.

adam


----------------------------------------
> Date: Mon, 1 Mar 2010 23:25:23 +0100
> Subject: Re: Inserting data into nested collections
> From: azlist1@(protected)
> To: user@(protected)
>
> Thanks Adam for the fast reply.
>
> I'm not sure howver that your solution would solve my problem. I'll try to
> inspire from it however : )
>
> I found this issue which looks pretty much related to my problem :
>
> http://jira.opensymphony.com/browse/XW-408
>
> Is this a known issue in Struts 2 and OGNL ?
>
> Thansk you for your help and suggestions !            
_________________________________________________________________
Got a cool Hotmail story? Tell us now
http://clk.atdmt.com/UKM/go/195013117/direct/01/

Attachment: user_205201.ezm (zipped)
Hi Adam !

Thanks for your feedback. I did manage to populate my collection by hacking
a little on the client side and by using javascript and hidden fields but
that's a really dirty way to do it in my opinion....

I'd love to hear from others on this list to see if they managed to populate
nested collecctions in Struts2


Cheers,

Alex.

Attachment: user_205196.ezm (zipped)
Hi,

Is there a plan of releasing 2.0.15?

Thanks in advance!

--


Jev



Attachment: user_205200.ezm (zipped)

reposting to struts dev list so Wes will be able to answer your inquiry..

Obrigado
Martin Gainty
______________________________________________
please do not alter/disrupt this transmission. Thank You



> Date: Tue, 2 Mar 2010 14:06:10 +0800
> From: jevica.arianne@(protected)
> To: user@(protected)
> Subject: Struts 2 release inquiry
>
> Hi,
>
> Is there a plan of releasing 2.0.15?
>
> Thanks in advance!
>
> --
>
>
> Jev
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: user-unsubscribe@(protected)
> For additional commands, e-mail: user-help@(protected)
>
           
_________________________________________________________________
Hotmail: Free, trusted and rich email service.
http://clk.atdmt.com/GBL/go/201469228/direct/01/

Attachment: user_205197.ezm (zipped)
Hi,

I have a save method in an action. Due to configuration, data can come from
the same form on different jsp. Each jsp having different required fields.
For example, an address form. On one jsp the "Country" field is required, on
another one the "Country" field is NOT required...

Can I specify a validation.xml file for each jsp ?

If someone has a clue,
Thanks.

Attachment: user_205199.ezm (zipped)



in case anyone else encounters similar issue.

i forced the locale to en_GB (using datetimepicker with dd/mm/yyyy format) by adding it into struts.xml and now it works.

what was happening was that the dates on the url were not being converted into java.util.Date fields because they were deemed invalid when using Safari!. Two problems with that

1) No proper error occurs and so there is no stack trace and it is not displayed by actionerrors tag as it is not the pages action (its an s:action on a page).

2) The logging from ParameterInterceptor class showed that all the parameters whether using IE,Firefox or Safari were exactly the same, the dates were the same value and format - if something affects the conversion then it would be helpful if the parameter interceptor class could output the relevant details (i.e. the locale with regards to Date conversions).

I was surprised that the browser had any bearing on this particular issue as the s:action must be resolved on the server side - is the browsers default locale kept in the session and then used where necessary ?

adam
           
_________________________________________________________________
We want to hear all your funny, exciting and crazy Hotmail stories. Tell us now
http://clk.atdmt.com/UKM/go/195013117/direct/01/


Attachment: user_205202.ezm (zipped)

Hi,

We are using struts- 2.1.8.1 GA release.
I am trying to add tooltip attribute for <s:a/> tag.
Its not working.

I tried adding <s:head/> still not working.
I tried changing theme = 'xhtnl'.

Still its not working.
is this a bug.

I am not using dojo plugin.
I am using jquery plugin.
Can anybody know whats the solution.

Thanks and Regards
RS
--
Sent from the Struts - User mailing list archive at Nabble.com.



Attachment: user_205203.ezm (zipped)
Hi struts users,

I have a select with options too large (don't fit on the screen) so I need a
horizontal scroll.
By the way, it has to work on Firefox and IExplorer.

anybody knows a possible solution for this problem?

Thanks in advance,
Sr. Ilustre

Attachment: user_205204.ezm (zipped)
Hi All,

I cannot seem to turn off the warning messages Struts 2 is putting in
my log files. This makes it impossible to follow debugging in some
parts of the applications. I keep getting messages like following:


[#|2010-03-03T13:45:10.345+0100|WARNING|sun-appserver2.1|org.apache.struts2.util.TextProviderHelper|_ThreadID=23;_ThreadName=httpSSLWorkerThread-8080-2;_RequestID=5867914b-d1a7-4fd5-a848-a419944b1ad6;|The default value expression 'Guardar' was evaluated and did not match a property. The literal value 'Guardar' will be
used.|#]


I have googled around and looked at the archives and cannot find a
solution that works. Below is my log4j.properties which is in the
WEB-INF/classes folder.


# Set root logger level to WARN and append to stdout
log4j.rootLogger=ERROR, stdout

log4j.appender.stdout=org.apache.log4j.ConsoleAppender
log4j.appender.stdout.layout=org.apache.log4j.PatternLayout

# Pattern to output the caller's file name and line number.
log4j.appender.stdout.layout.ConversionPattern=%d %5p (%c:%L) - %m%n

# Print only messages of level ERROR or above in the package noModule.
log4j.logger.noModule=FATAL



Any ideas? Anyone else having the same problem?

Cheers, Carl.






*Advertencia legal: en virtud de lo establecido en la Ley Organica 15/1999 de Proteccion de Datos de Caracter Personal, le informamos de que los datos personales que pueda facilitarnos se incorporaran a un fichero automatizado titularidad de CAST INFO, S.A. con la finalidad de gestionar la relacion negocial que nos vincula. Podra revocar su consentimiento al tratamiento de los datos, asi como ejercer sus derechos de acceso, rectificacion, cancelacion u oposicion dirigiendose por escrito a CAST INFO domiciliada en C/ Tuset 23, 1 -- 08006 Barcelona, o a la direccion de correo electronico lopd@(protected).

Este mensaje y los ficheros anexos que pueda contener son confidenciales, pueden contener informacion sometida a secreto profesional y se dirige exclusivamente a su destinatario. Si ha recibido este mensaje por error o tiene conocimiento del mismo por cualquier motivo, le rogamos que nos lo comunique inmediatamente por este mismo medio y se abstenga de utilizarlo, reproducirlo, alterarlo, archivarlo o comunicarlo a terceros. El emisor no se responsabiliza de posibles perjuicios derivados de la captura, incorporaciones de virus o cualesquiera otras manipulaciones efectuadas por terceros.

Antes de imprimir este e-mail piense bien si es necesario hacerlo.


Attachment: user_205205.ezm (zipped)
You should use the tiles attribute

--- En date de : Mer 3.3.10, nani2ratna <nani2ratna@(protected) :

> De: nani2ratna <nani2ratna@(protected)>
> Objet: Struts 2 tooltip is not working
> À: user@(protected)
> Date: Mercredi 3 mars 2010, 9h42
>
> Hi,
>
> We are using struts- 2.1.8.1 GA release.
> I am trying to add tooltip attribute for <s:a/> tag.
> Its not working.
>
> I tried adding <s:head/> still not working.
> I tried changing theme = 'xhtnl'.
>
> Still its not working.
> is this a bug.
>
> I am not using dojo plugin.
> I am using jquery plugin.
> Can anybody know whats the solution.
>
> Thanks and Regards
> RS
> --
> View this message in context: http://old.nabble.com/Struts-2-tooltip-is-not-working-tp27766081p27766081.html
> Sent from the Struts - User mailing list archive at
> Nabble.com.
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: user-unsubscribe@(protected)
> For additional commands, e-mail: user-help@(protected)
>
>





Attachment: user_205206.ezm (zipped)

Sorry Frederick.
I didn't get you.
There is not tiles attribute in S;text or s:a.
Where i need to use that attribute.

Thanks in advance
RS


Frederik Minatchy wrote:
>
> You should use the tiles attribute
>
> --- En date de : Mer 3.3.10, nani2ratna <nani2ratna@(protected) :
>
>> De: nani2ratna <nani2ratna@(protected)>
>> Objet: Struts 2 tooltip is not working
>> À: user@(protected)
>> Date: Mercredi 3 mars 2010, 9h42
>>
>> Hi,
>>
>> We are using struts- 2.1.8.1 GA release.
>> I am trying to add tooltip attribute for <s:a/> tag.
>> Its not working.
>>
>> I tried adding <s:head/> still not working.
>> I tried changing theme = 'xhtnl'.
>>
>> Still its not working.
>> is this a bug.
>>
>> I am not using dojo plugin.
>> I am using jquery plugin.
>> Can anybody know whats the solution.
>>
>> Thanks and Regards
>> RS
>> --
>> View this message in context:
>> http://old.nabble.com/Struts-2-tooltip-is-not-working-tp27766081p27766081.html
>> Sent from the Struts - User mailing list archive at
>> Nabble.com.
>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: user-unsubscribe@(protected)
>> For additional commands, e-mail: user-help@(protected)
>>
>>
>
>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: user-unsubscribe@(protected)
> For additional commands, e-mail: user-help@(protected)
>
>
>

--
Sent from the Struts - User mailing list archive at Nabble.com.



Attachment: user_205207.ezm (zipped)


I personally use the standard <a> tag not the struts one and use struts to populate the tooltip with <s:text> so <a href="..." title="<s:text ....>">some link text</a>

not sure the struts <a> really adds much as the href is likely to be just the action name not the full URL anyway.

adam


----------------------------------------
> Date: Wed, 3 Mar 2010 05:11:45 -0800
> From: nani2ratna@(protected)
> To: user@(protected)
> Subject: Re: Re : Struts 2 tooltip is not working
>
>
> Sorry Frederick.
> I didn't get you.
> There is not tiles attribute in S;text or s:a.
> Where i need to use that attribute.
>
> Thanks in advance
> RS
>
>
> Frederik Minatchy wrote:
>>
>> You should use the tiles attribute
>>
>> --- En date de : Mer 3.3.10, nani2ratna a écrit :
>>
>>> De: nani2ratna
>>> Objet: Struts 2 tooltip is not working
>>> À: user@(protected)
>>> Date: Mercredi 3 mars 2010, 9h42
>>>
>>> Hi,
>>>
>>> We are using struts- 2.1.8.1 GA release.
>>> I am trying to add tooltip attribute for tag.
>>> Its not working.
>>>
>>> I tried adding still not working.
>>> I tried changing theme = 'xhtnl'.
>>>
>>> Still its not working.
>>> is this a bug.
>>>
>>> I am not using dojo plugin.
>>> I am using jquery plugin.
>>> Can anybody know whats the solution.
>>>
>>> Thanks and Regards
>>> RS
>>> --
>>> View this message in context:
>>> http://old.nabble.com/Struts-2-tooltip-is-not-working-tp27766081p27766081.html
>>> Sent from the Struts - User mailing list archive at
>>> Nabble.com.
>>>
>>>
>>> ---------------------------------------------------------------------
>>> To unsubscribe, e-mail: user-unsubscribe@(protected)
>>> For additional commands, e-mail: user-help@(protected)
>>>
>>>
>>
>>
>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: user-unsubscribe@(protected)
>> For additional commands, e-mail: user-help@(protected)
>>
>>
>>
>
> --
> View this message in context: http://old.nabble.com/Struts-2-tooltip-is-not-working-tp27766081p27768002.html
> Sent from the Struts - User mailing list archive at Nabble.com.
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: user-unsubscribe@(protected)
> For additional commands, e-mail: user-help@(protected)
>            
_________________________________________________________________
Tell us your greatest, weirdest and funniest Hotmail stories
http://clk.atdmt.com/UKM/go/195013117/direct/01/

Attachment: user_205208.ezm (zipped)

Thank you very much adam.
Its working.
So in all the tags title is working as tooltip.
So what is the purpose of tooltip attribute, since title is doing that work.

Thanks in advance
ratna


adam pinder wrote:
>
>
>
> I personally use the standard  tag not the struts one and use struts to
> populate the tooltip with <s:text> so ... ">some link text
>
> not sure the struts  really adds much as the href is likely to be just
> the action name not the full URL anyway.
>
> adam
>
>
> ----------------------------------------
>> Date: Wed, 3 Mar 2010 05:11:45 -0800
>> From: nani2ratna@(protected)
>> To: user@(protected)
>> Subject: Re: Re : Struts 2 tooltip is not working
>>
>>
>> Sorry Frederick.
>> I didn't get you.
>> There is not tiles attribute in S;text or s:a.
>> Where i need to use that attribute.
>>
>> Thanks in advance
>> RS
>>
>>
>> Frederik Minatchy wrote:
>>>
>>> You should use the tiles attribute
>>>
>>> --- En date de : Mer 3.3.10, nani2ratna a écrit :
>>>
>>>> De: nani2ratna
>>>> Objet: Struts 2 tooltip is not working
>>>> À: user@(protected)
>>>> Date: Mercredi 3 mars 2010, 9h42
>>>>
>>>> Hi,
>>>>
>>>> We are using struts- 2.1.8.1 GA release.
>>>> I am trying to add tooltip attribute for tag.
>>>> Its not working.
>>>>
>>>> I tried adding still not working.
>>>> I tried changing theme = 'xhtnl'.
>>>>
>>>> Still its not working.
>>>> is this a bug.
>>>>
>>>> I am not using dojo plugin.
>>>> I am using jquery plugin.
>>>> Can anybody know whats the solution.
>>>>
>>>> Thanks and Regards
>>>> RS
>>>> --
>>>> View this message in context:
>>>> http://old.nabble.com/Struts-2-tooltip-is-not-working-tp27766081p27766081.html
>>>> Sent from the Struts - User mailing list archive at
>>>> Nabble.com.
>>>>
>>>>
>>>> ---------------------------------------------------------------------
>>>> To unsubscribe, e-mail: user-unsubscribe@(protected)
>>>> For additional commands, e-mail: user-help@(protected)
>>>>
>>>>
>>>
>>>
>>>
>>>
>>> ---------------------------------------------------------------------
>>> To unsubscribe, e-mail: user-unsubscribe@(protected)
>>> For additional commands, e-mail: user-help@(protected)
>>>
>>>
>>>
>>
>> --
>> View this message in context:
>> http://old.nabble.com/Struts-2-tooltip-is-not-working-tp27766081p27768002.html
>> Sent from the Struts - User mailing list archive at Nabble.com.
>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: user-unsubscribe@(protected)
>> For additional commands, e-mail: user-help@(protected)
>>            
> _________________________________________________________________
> Tell us your greatest, weirdest and funniest Hotmail stories
> http://clk.atdmt.com/UKM/go/195013117/direct/01/
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: user-unsubscribe@(protected)
> For additional commands, e-mail: user-help@(protected)
>
>
>

--
Sent from the Struts - User mailing list archive at Nabble.com.



Attachment: user_205209.ezm (zipped)
2010/3/3 adam pinder <apinder@(protected)>:
> I personally use the standard <a> tag not the struts one and use struts to populate the tooltip with <s:text> so <a href="..." title="<s:text ....>">some link text</a>
>
> not sure the struts <a> really adds much as the href is likely to be just the action name not the full URL anyway.

<#if parameters.title??>
title="${parameters.title?html}"<#rt/>
</#if>

Strange, title attribute is set in a-close.ftl, did you try to use
<s:a title="Test">sdfsdf</a> ?


Regards
--
Łukasz
http://www.lenart.org.pl/
Kapituła Javarsovia 2010
http://javarsovia.pl


Attachment: user_205210.ezm (zipped)
Oups... I missed the "t" key to type "title"...

Sorry...

--- En date de : Mer 3.3.10, nani2ratna <nani2ratna@(protected) :

> De: nani2ratna <nani2ratna@(protected)>
> Objet: Re: Re : Struts 2 tooltip is not working
> À: user@(protected)
> Date: Mercredi 3 mars 2010, 13h11
>
> Sorry Frederick.
> I didn't get you.
> There is not tiles attribute in S;text or s:a.
> Where i need to use that attribute.
>
> Thanks in advance
> RS
>
>
> Frederik Minatchy wrote:
> >
> > You should use the tiles attribute
> >
> > --- En date de : Mer 3.3.10, nani2ratna <nani2ratna@(protected)>
> a écrit :
> >
> >> De: nani2ratna <nani2ratna@(protected)>
> >> Objet: Struts 2 tooltip is not working
> >> À: user@(protected)
> >> Date: Mercredi 3 mars 2010, 9h42
> >>
> >> Hi,
> >>
> >> We are using struts- 2.1.8.1 GA release.
> >> I am trying to add tooltip attribute for
> <s:a/> tag.
> >> Its not working.
> >>
> >> I tried adding <s:head/> still not working.
> >> I tried changing theme = 'xhtnl'.
> >>
> >> Still its not working.
> >> is this a bug.
> >>
> >> I am not using dojo plugin.
> >> I am using jquery plugin.
> >> Can anybody know whats the solution.
> >>
> >> Thanks and Regards
> >> RS
> >> --
> >> View this message in context:
> >> http://old.nabble.com/Struts-2-tooltip-is-not-working-tp27766081p27766081.html
> >> Sent from the Struts - User mailing list archive
> at
> >> Nabble.com.
> >>
> >>
> >>
> ---------------------------------------------------------------------
> >> To unsubscribe, e-mail: user-unsubscribe@(protected)
> >> For additional commands, e-mail: user-help@(protected)
> >>
> >>
> >
> >
> >
> >
> >
> ---------------------------------------------------------------------
> > To unsubscribe, e-mail: user-unsubscribe@(protected)
> > For additional commands, e-mail: user-help@(protected)
> >
> >
> >
>
> --
> View this message in context: http://old.nabble.com/Struts-2-tooltip-is-not-working-tp27766081p27768002.html
> Sent from the Struts - User mailing list archive at
> Nabble.com.
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: user-unsubscribe@(protected)
> For additional commands, e-mail: user-help@(protected)
>
>




©2008 gg3721.com - Jax Systems, LLC, U.S.A.