RE: Asynchronous Display of Action Results

2011-07-11 Thread Baubak Gandomi
Thanks Wes, $(document).ready(function() { $("#remoteAction1").load(''); $("#remoteAction2").load(''); }); After figuring out how to work with jquery it all worked like a charm. Thanks for your help. Best regards Baubak -Or

Re: Asynchronous Display of Action Results

2011-07-11 Thread Dave Newton
On Mon, Jul 11, 2011 at 4:51 PM, Baubak Gandomi wrote: > Thanks I'll test your solution, and see how it works. It's the only solution there is. Dave - To unsubscribe, e-mail: user-unsubscr...@struts.apache.org For additional com

RE: Asynchronous Display of Action Results

2011-07-11 Thread Baubak Gandomi
Thanks I'll test your solution, and see how it works. -Original Message- From: Wes Wannemacher [mailto:w...@wantii.com] Sent: lundi 11 juillet 2011 16:52 To: Struts Users Mailing List Subject: Re: Asynchronous Display of Action Results You can achieve the outcome you desire by using AJAX

Re: Documentation styles missing some classes?

2011-07-11 Thread Dave Newton
I thought we just used the default Confluence styles, but perhaps I'm mistaken. Dave On Monday, July 11, 2011, Luiz Roberto Meier wrote: >  I liked the stylesheet of v2.0.14 example. I hope that this change was just > a mistake. > > On Mon, Jul 11, 2011 at 4:44 PM, wrote: > >> This could be int

Re: Documentation styles missing some classes?

2011-07-11 Thread Emi Lu
I think the code-section display in the 2.0.14 is better: http://struts.apache.org/2.0.14/docs/localization.html Emi On Mon, Jul 11, 2011 at 4:44 PM, wrote: This could be intentional, but I believe the "space.css" style stylesheet lost the CSS class definition for ".tipMacro." This makes

Re: Documentation styles missing some classes?

2011-07-11 Thread Luiz Roberto Meier
I liked the stylesheet of v2.0.14 example. I hope that this change was just a mistake. On Mon, Jul 11, 2011 at 4:44 PM, wrote: > This could be intentional, but I believe the "space.css" style stylesheet > lost the CSS class definition for ".tipMacro." This makes the docs look a > little less n

Documentation styles missing some classes?

2011-07-11 Thread struts . rgm
This could be intentional, but I believe the "space.css" style stylesheet lost the CSS class definition for ".tipMacro." This makes the docs look a little less nice in v2.2.3 than in v2.0.14. Compare the green package heirarchy tip boxes between: http://struts.apache.org/2.0.14/docs/loca

Re: Asynchronous Display of Action Results

2011-07-11 Thread Wes Wannemacher
You can achieve the outcome you desire by using AJAX instead of the s:action tag. Here is an (untested) jquery example - "); $("remoteAction2").load(""); }); I'm too lazy at the moment to make sure that the javascript is correct, so if someone notices any glaring errors, please chime in.

Asynchronous Display of Action Results

2011-07-11 Thread Baubak Gandomi
Hello, I am not able to find any mention of this topic, or even if it is really Struts 2-related. I have a view which calls two actions using /WEB-INF/pages/main.jsp /WEB-INF/pages/page1.jsp

[OT] Re: Using Display Tag library

2011-07-11 Thread Dave Newton
On Mon, Jul 11, 2011 at 8:34 AM, JavaNoobie87 wrote: > The thing is I'm  NOT using struts 2 here , just basic jsp,javabeans and > servlets .(Its a sort of demo project!). Well, this is a Struts mailing list. > As of now my DAO fetches the result according to this query How the data is retrieved

Re: Using Display Tag library

2011-07-11 Thread JavaNoobie87
Hey Eric, thanks for replying! The thing is I'm NOT using struts 2 here , just basic jsp,javabeans and servlets .(Its a sort of demo project!). As of now my DAO fetches the result according to this query if (con != null){ System.out.println("Connecte

Re: Using Display Tag library

2011-07-11 Thread Eric Lentz
> all samples of the displaytag library that I have come across , >involve storing the entire resultset from the query in the session Really? I use displaytag all the time through the equivalent of request scope. Just pass it a list in the same way you would use a Struts2 select list (http://str

Using Display Tag library

2011-07-11 Thread JavaNoobie87
Hi All, Im developing a web app that performs the display of data in a tabular manner. Im trying to use the display tag library to help me with the pagination and sorting of the data being presented . But , seem to have hit a roadblock here , all samples of the displaytag library that I have come