FormFragment validation acting up after upgrade to 5.3.6

2012-12-30 Thread mailing lists
Hi, I have just updated from 5.2.5 to 5.3.6 and my formfragment's started acting up. To be precise, when I load a form (over ajax) with multiple hidden formfragments and submit it (again over ajax) it does validate my custom input fields in the hidden fragments. When I show and hide the fragmen

Re: MQ Ajax

2012-12-30 Thread Taha Siddiqi
Try this. http://tapestry.apache.org/configuration.html#Configuration-ConfiguringIgnoredPaths On Dec 31, 2012, at 8:43 AM, 真实的力量 wrote: > I want add "Instant Messaging" function to my app, > I choose ActiveMQ as server side , I see ActiveMQ char example work well > ,activeM-Ajax-Example > Bu

Re: Contribution: Tapestry Mybatis plugin

2012-12-30 Thread Lance Java
The best thing you can do is to download the tapestry source and look at the hibernate integration. The best places to start are HibernateCoreModule and Hibernate module. In my opinion, there are three core things that tapestry-hibernate does that I think your module should do: 1. It provides a h

Contribution: Tapestry Mybatis plugin

2012-12-30 Thread Sanket
Hi, I am currently exploring the option of using tapestry for my next project. However, I realized there is no direct support for using mybatis directly with tapestry - I could use Guice or SPring and use their mybatis support, but I dont really want to do that. So I put my Christmas holiday

Re: AJAX Throbber

2012-12-30 Thread Rural Hunter
Nice! 于 2012/12/30 22:12, Geoff Callender 写道: In case it helps, here's a working example. http://jumpstart.doublenegative.com.au/jumpstart/examples/ajax/loadingspinner Cheers, Geoff On 27/12/2012, at 8:40 PM, mateen wrote: Hi, I looking to implement a AJAX Throbber for all ajax c

Re: select blankOption

2012-12-30 Thread Geoff Callender
Some code please. On 31/12/2012, at 1:42 AM, John wrote: > I got that to work, it's great, I hadn't notice all the values can have a > prefix to change the scope. > > The problem is that the method that returns the option values and sets the > blankOption value is invoked after the blankOption

Re: select blankOption

2012-12-30 Thread John
I got that to work, it's great, I hadn't notice all the values can have a prefix to change the scope. The problem is that the method that returns the option values and sets the blankOption value is invoked after the blankOption getter. This is a problem I have hit before where a property value

Re: AJAX Throbber

2012-12-30 Thread Geoff Callender
In case it helps, here's a working example. http://jumpstart.doublenegative.com.au/jumpstart/examples/ajax/loadingspinner Cheers, Geoff On 27/12/2012, at 8:40 PM, mateen wrote: > Hi, > > I looking to implement a AJAX Throbber for all ajax calls. This is my java > script function. >

Re: select blankOption

2012-12-30 Thread Geoff Callender
Ah, so you were. Same applies. On 31/12/2012, at 12:24 AM, John wrote: > I was talking about blankOption, but I'll try with the prop prefix. > - Original Message - > From: Geoff Callender > To: Tapestry users > Sent: Sunday, December 30, 2012 12:16 PM > Subject: Re: select blankOp

Re: select blankOption

2012-12-30 Thread John
I was talking about blankOption, but I'll try with the prop prefix. - Original Message - From: Geoff Callender To: Tapestry users Sent: Sunday, December 30, 2012 12:16 PM Subject: Re: select blankOption The default prefix is "literal". Use "prop", eg. blankLabel="prop:your

Re: select blankOption

2012-12-30 Thread Geoff Callender
The default prefix is "literal". Use "prop", eg. blankLabel="prop:yourProperty". See Binding Expressions in http://tapestry.apache.org/component-parameters.html . Cheers, Geoff On 30/12/2012, at 11:07 PM, John wrote: > I would like to choose dynamically whether to display the blank option in

select blankOption

2012-12-30 Thread John
I would like to choose dynamically whether to display the blank option in my select component. I am using it to display an ALL value and don't want to show this if the select has only 1 option. Unfortunately the docs say that the blankOption is a literal and not a property. Is there any way to

Re: StrategyBuilder Service and Components

2012-12-30 Thread Lance Java
As has been mentioned, tapestry transforms component classes and loads component instances with a different classloader to the rest of your app. Therefore Form.class in your AppModule will NEVER be equals() to someComponentInstance.getClass() at runtime (a class is only equal to another class if th