Re: @Hidden deprecated in 1.8.0 snapshot

2015-01-29 Thread Dan Haywood
2015-01-28 10:58 GMT+00:00 Martin Grigorov mgrigo...@apache.org: 2015-01-28 12:52 GMT+02:00 Dan Haywood d...@haywood-associates.co.uk: My first thought after seeing @DomainService(type=PROGRAMMATIC) is: why there is no @Action(type=PROGRAMMATIC) instead of @Programmatic then ? To be more

Re: LocalDate UI (datepicker issue) in 1.8.0-Snapshot

2015-01-29 Thread Martin Grigorov
Weird, indeed! I won't have time to try your app today. But I'll do it as soon as I can! Martin Grigorov Wicket Training and Consulting https://twitter.com/mtgrigorov On Thu, Jan 29, 2015 at 10:37 AM, johandoornen...@filternet.nl wrote: Hi Martin, The issue is - for example - I choose

Re: LocalDate UI (datepicker issue) in 1.8.0-Snapshot

2015-01-29 Thread JohanDoornenbal
Hi Martin, The issue is - for example - I choose januari 15, 2015 in datepicker and it displays 13-43-15 in dateinput. In FireFox 13-53-15 and Safari 31-35-15 Next login the values can change.. Really weird. The code: [1] line 115 Grtz Johan 1.

Re: LocalDate UI (datepicker issue) in 1.8.0-Snapshot

2015-01-29 Thread JohanDoornenbal
Tnx Martin, No haste needed at all. It is not a blocking issue at the moment. I will keep you posted when I discover more - e.g. when I deploy on testserver I will send you a link. grtz Johan Weird, indeed! I won't have time to try your app today. But I'll do it as soon as I can!

render contributed action eagerly

2015-01-29 Thread JohanDoornenbal
Hi, Is there a way to render the (list) result of a contributed action eagerly? I tried:     @Action(semantics=SemanticsOf.SAFE)     @CollectionLayout(render=RenderType.EAGERLY)     public List showProfileMatches(Profile demandProfile) { [1]

Re: incremental number field in domain object

2015-01-29 Thread Dan Haywood
Hi Victor, That's really a JDO/DataNucleus question; Isis just delegates to DataNucleus to do its thang. This page might help [1]. FWIW, we tend to use IDENTITY rather than INCREMENT. Cheers Dan [1] http://www.datanucleus.org/products/datanucleus/jdo/value_generation.html#increment On 29

Re: render contributed action eagerly

2015-01-29 Thread JohanDoornenbal
Hi Dan, The deprecated works correctly indeed. grtz Johan hmm, that looks correct. I wonder if there's a bug with that annotation. If you replace @CollectionLayout(render=...) with the deprecated @Render(Type.EAGERLY), does it work? On 29 January 2015 at 10:43, wrote: Hi, Is

Re: incremental number field in domain object

2015-01-29 Thread Dan Haywood
The DataNucleus page [1] says that the following persistence property is required: datanucleus.valuegeneration.increment.allocationSize To specify this through Isis, add it into one of the Isis config files (eg persistor_datanucleus.properties or if you prefer even isis.properties