Re: Freemarker sitemesh decorator does not render struts 2.2.1 action tag

2010-10-16 Thread Maurizio Cucchiara
Hi Derrick, I just upload a patch that should fix the problem you have mentioned. 2010/10/4 Derrick Koes : > Ah, this appears to be a known issue.  Please see WW-3330 at > https://issues.apache.org/jira/secure/IssueNavigator.jspa?reset=true&mode=hide&pid=12311041&sorter/order=DESC&sorter/field=

Re: Implement Edit and Delete function in Struts jQuery Grid

2010-10-16 Thread Jason Ferguson
I'll second this. I've gotten to the point where I am only using the tags to include jquery in my app, and hand-code everything else. Jason On Sat, Oct 16, 2010 at 11:28 AM, Dave Newton wrote: > This is one reason why I think it's almost always better to just use > the raw framework: to reitera

Re: Implement Edit and Delete functions in Struts jQuery Grid

2010-10-16 Thread Johannes Geppert
Hi Terry, I think this is this is possible, but only with some handmake javascript. take a look at the custom formatters, I think this is the right way. http://code.google.com/p/struts2-jquery/wiki/FormatGrid Johannes cellterry wrote: > > Dear all, > > For Struts2 jQuery Plugin, > > coul

Re: Implement Edit and Delete function in Struts jQuery Grid

2010-10-16 Thread Dave Newton
This is one reason why I think it's almost always better to just use the raw framework: to reiterate my stance, anything but the most simple usecases are better off implemented using jQuery itself rather than trying to shoehorn behaviors unsupported by the tags. The tags are meant as conveniences.

Re: [Solved] Re: sx:datetimepicker

2010-10-16 Thread Dave Newton
The old filter was deprecated as of S2.1; it's always a good idea to check the release notes and/or javadocs of the classes you're using to make sure your code/config is up-to-date! Dave On Sat, Oct 16, 2010 at 11:37 AM, cellterry wrote: > > Finally I find out what happens by comparing showcase

Implement Edit and Delete function in Struts jQuery Grid

2010-10-16 Thread cellterry
Dear all, For Struts2 jQuery Plugin, could I add edit and delete buttons on each row of the table using sjg tag? If not, how do I implement edit & delete functions using this grid? Terry. -- View this message in context: http://old.nabble.com/Implement-Edit-and-Delete-function-in-Struts-jQ

[Solved] Re: sx:datetimepicker

2010-10-16 Thread cellterry
Finally I find out what happens by comparing showcase of the plugin with my codes: In web.xml, change org.apache.struts2.dispatcher.FilterDispatcher to org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter and then the datepicker work normally. Terry. -- View this message

Re: Struts, Spring, Hibernate and multiple Sessionfactories

2010-10-16 Thread Dave Newton
2010/10/16 Raymond He : > To Li Ying and Dave New ton, multiple datasources is a common > requirement in large scale e-commerce  and telecom application. I know; that's what I said. Dave - To unsubscribe, e-mail: user-unsubscr..

Re: Struts, Spring, Hibernate and multiple Sessionfactories

2010-10-16 Thread Raymond He
To Li Ying and Dave New ton, multiple datasources is a common requirement in large scale e-commerce and telecom application. I used a data object to table mapping to do DB routing vertically, pk hashing to route horizontally. The r