Re: Nature of JAXB Views Models

2017-10-20 Thread Jeroen van der Wal
This is how I use it: @DomainObject(nature = Nature.VIEW_MODEL, objectType = "MyJaxbViewModel") @XmlRootElement(name = "myJaxbViewModel") @XmlType( propOrder = { "myIncludedProperty" } ) @XmlAccessorType(XmlAccessType.FIELD) public class MyJaxbViewModel { @Getter

Re: Prototyping menu item disappearing

2017-10-03 Thread Jeroen van der Wal
Hi Stephen, To enable prototyping this is what we have in web.xml: configuration development HTH Jeroen On 2 October 2017 at 09:22, Stephen Cameron wrote: > Hi, > > Before I go looking can anyone suggest why this might occur? I am

Re: ElasticSearch module

2017-06-22 Thread Jeroen van der Wal
That's great Erik, many thanks! On 22 June 2017 at 15:13, Erik de Hair wrote: > Hi all, > > As promised, I started working on an ElasticSearch module. It can be found > at [1]. There's still a lot to do but at least it's running and indexing > demo objects. I'll keep you

Re: IsisCon 2017: Welcome Party / Video Testimonals

2017-06-08 Thread Jeroen van der Wal
We miss you too Stephen :-) On 7 June 2017 at 22:41, Stephen Cameron <steve.cameron...@gmail.com> wrote: > Hope there are few wrong people, key people is probably your meaning. Have > a good conf. Cheers > > On Tuesday, June 6, 2017, Jeroen van der Wal <jer...@stromboli.it&g

IsisCon 2016: Hotel and venue change

2017-06-07 Thread Jeroen van der Wal
Dear IsisCon attendees, We've just received confirmation that there's a room for all of us in the new Zoku Hotel [1]. There's nothing you need to do, all rooms have been booked and guaranteed. Since the Zoku has a lovely conference space overlooking the the city we decided to have the conference

IsisCon 2017: Welcome Party / Video Testimonals

2017-06-05 Thread Jeroen van der Wal
Dear all, IsisCon is only a few days away and we're excited to have the right people at same time in one space again. *Welcome party* The welcome party on Friday will be held on a boat, courtesy of Eurocommercial Properties. We board around 5pm for a two hour canal tour and dock near a

Re: [ANOUNCEMENT] IsisCon / 9-10 June 2017 / Amsterdam

2017-05-12 Thread Jeroen van der Wal
ance? >> >> I've booked my ticket (leaving midday Sunday, I'm afraid). >> >> Is there any news about a hotel yet? >> >> Cheers, >> Kevin >> >> >> On 1 May 2017 02:17:05 CEST, Jeroen van der Wal <jer...@stromboli.it> wrote: >> >>>

[ANOUNCEMENT] IsisCon / 9-10 June 2017 / Amsterdam

2017-04-30 Thread Jeroen van der Wal
Dear Apache Isis friends, We are happy to announce the second edition of IsisCon, a free and open conference dedicated to Apache Isis. This edition will be held on June 9 and 10 2017 in Amsterdam and is a unique opportunity to meet other community members and discuss the future of Apache Isis.

Re: Floating point value always rounded when rendered in a collection

2017-04-26 Thread Jeroen van der Wal
> !skip.jdbc-mysql > > > > > > com.mysql > mysql > 5.1.40 > > > > " > > > > 2017-04-25

Re: Floating point value always rounded when rendered in a collection

2017-04-25 Thread Jeroen van der Wal
Hi Eder, Are you developing against the in-memory hsqldb database? If not, what does the scale in your database look like? Cheers, Jeroen

Re: Re-using the "Hide Table" feature

2017-04-14 Thread Jeroen van der Wal
As an immediate solution you could also use tabs, for example "Simple search" containing the most used field and "Advanced Search" containing all. Or have the results on a dedicated tab. On 14 April 2017 at 14:18, Martin Hesse wrote: > On a side note: I was looking at how to

Re: Deep copy object graph

2017-03-22 Thread Jeroen van der Wal
I strongly believe that when your data has a temporal nature you should model this in your domain layer. Just my two cents. Cheers, Jeroen On 19 March 2017 at 19:37, Kevin Meyer wrote: > This got caught in my spam folder... > > I fully understand your desire for deep clone in

Re: Count

2016-11-17 Thread Jeroen van der Wal
Returning a collection of view models would work: @ViewModel // or @DomainObject(nature = Nature.VIEW_MODEL) public class UserCount { public UserCount(final LocalDate date, final BigInteger count) { this.date = date; this.count = count; } @Getter @Setter // Uses

Re: Is it possible to link to an action that returns a list?

2016-11-10 Thread Jeroen van der Wal
A workaraound would be a to create viewmodel which embeds this list and link to that. On 10 November 2016 at 08:13, Dan Haywood wrote: > Not currently (there is a ticket for this, I think) but there is a > workaround. > > That workaround is to define a view model

Re: Common way for deploying isis apps

2016-11-09 Thread Jeroen van der Wal
Hi Bilgin, We are deploying the .war to Tomcat 8 instances. We are investigating Docker and Fabric8 for our CD platform. Cheers, Jeroen On 7 November 2016 at 11:23, Martin Grigorov wrote: > Hi, > > Isis simpleapp (and any other demo app) has config for Jetty-Console: >

Re: [ANNOUNCE] New Committer - Bilgin Ibryam

2016-11-09 Thread Jeroen van der Wal
Welcome Bilgin, great to have you here! On 9 November 2016 at 13:26, Dan Haywood wrote: > I'm delighted to announce that Bilgin Ibryam has been voted in as a > committer on Apache Isis, and also as a member of the Isis PMC. The first > gives Bilgin the right to

Re: dates not showing in view model

2016-10-18 Thread Jeroen van der Wal
Hi Stephen, I've created a separate branch in my personal fork of the kitchensink app [1] and pasted some of your code there in order to reproduce the issue. Could you please follow a similar pattern next time to allow faster debugging? I have not debugged further but it might be an issue with

Re: Problems with startup since 1.13.0

2016-10-18 Thread Jeroen van der Wal
Hi Timothy, I've had issues when hot-deploying wars and had to kill the process to so now we have a deployment script that stops the tomcat service, waits until the service has completely shut down, deploys and starts the service again. But you could argue it's a hack ;-) HTH Jeroen On 14

Re: Eclipse IDE errors after importing the archetype

2016-10-18 Thread Jeroen van der Wal
Hi Laszlo, First of all welcome to the Apache Isis community! For a smoother experience I suggest using IntelliJ since most members on this list are using that. The Eclipse documentation might be outdated for that reason, not sure about the video too. More on setting up IDEs can be found here:

Re: Action is not working on deployment

2016-09-13 Thread Jeroen van der Wal
My first step would be to watch the network activity in Chrome developer tools [1]. Secondly you can set up remote debugging of your app [2]. [1] https://developer.chrome.com/devtools [2]

Re: Adventures in Apache Isis...

2016-07-18 Thread Jeroen van der Wal
Thanks Deacon and Cesar for sharing your adventures. I agree that it can be a bumpy road sometimes but good to hear the framework will take you places. Your contributions can smoothen the path for future explorers. Cheers, Jeroen On 15 July 2016 at 19:32, Andre Venter

Re: Persist Parent and childrens

2016-07-18 Thread Jeroen van der Wal
Hi Andres, welcome to this list! The default REST implementation is following the Restful Objects specification [1] and does not support collections as action parameters. The workaround is to merge the collection in a single string and then parse it server-side. HTH PS Collections as parameters

Re: Mixed-in methods not appearing

2016-07-05 Thread Jeroen van der Wal
Can you share the package names of the two modules and your mixin? On 5 July 2016 at 15:48, Hiren Budhrani wrote: > Hey Dan, > > > Thanks for the tip. I found the app manifest but I am not sure what I am > looking for. If it helps, I ran the [1]ToDoApp today and mixins work

Re: Using different database provider settings in production

2016-06-30 Thread Jeroen van der Wal
We currently override the defaults in context.xml to point to different config files on dev, test and prod boxes: WEB-INF/web.xml The /var/isis-config folder contains the following files: isis.properties logging.properties persistor.properties

Re: Integrating Flyway for database migrations

2016-06-23 Thread Jeroen van der Wal
straints and I would create a issue in the DN ticketing system. > > > Thanks, > > Oscar > > > > El 21 jun 2016, a las 23:56, Jeroen van der Wal <jer...@stromboli.it> > escribió: > > Hi Kambiz, > > There's currently not a nice hook that I can th

Re: Integrating Flyway for database migrations

2016-06-21 Thread Jeroen van der Wal
Hi Kambiz, There's currently not a nice hook that I can think of to execute Flyway migrations. I would create a separate "upgrade" mode to start Isis that bootstraps with an in-memory db and allows you to do the Flyway stuff. But Dan probably has other ideas ;-) I've looked into Flyway for

Re: Invoking an Action Programmatically

2016-06-15 Thread Jeroen van der Wal
Perhaps you can specify your question with some (pseudo) code? On 15 June 2016 at 16:41, Fabio Purcino wrote: > Hi all, > > Is it possible to invoke an action programmatically from another action? > > The called action has parameters and I'd like to show the same screen

Re: Question regarding top menu

2016-06-14 Thread Jeroen van der Wal
Hi Fabio, Unfortunately it's not possible to decorate collections from a service action with another action. Only contributed or embedded collections can be decorated with actions. The closest thing you could do is create a homepage [1] (or another viewmodel) and contribute your collection and

Re: Beginner question, updating SimpleApp example

2016-06-08 Thread Jeroen van der Wal
I would recommend start using IntelliJ. You can follow this guide [1] to create better developer experience. [1] https://www.youtube.com/watch?v=6GPtec5Hu5Q On 8 June 2016 at 09:36, Kevin Lewandowski wrote: > Hi, Dan, Hector. I got it working. I needed to run "mvn

Re: RV: [cesarlugosis/CQNZwebapp] update to use 1.13.0-SNAPSHOT, for concurrency fixes (ISIS-1421) (#1)

2016-06-06 Thread Jeroen van der Wal
Hmm, need to look into that. I recall Joerg had a similar issue with the Todo app. A quick solution is to clone Isis [1] locally and build it. [1] https://github.com/apache/isis On 6 June 2016 at 17:56, Aída Betzabeth Dávila Sotelo < aida.dav...@sisorg.com.mx> wrote: > Hi Dan, > > We have

Re: ToDo App still not working

2016-05-31 Thread Jeroen van der Wal
2016 at 9:53 PM, Jeroen van der Wal <jer...@stromboli.it> > wrote: > > > Hi Boris, > > > > That's weird, I can see the dependency in the snapshot repository [1] but > > the build does not fetch that. As an intermediate solution you could > clone > > and bui

Re: Concurrency

2016-05-31 Thread Jeroen van der Wal
I agree with Martin that profiling is the only way to go. To illustrate: we recently made some code 8 times faster by a few simple code changes on bottlenecks revealed by JProfiler. And those were in places that we've never guessed. On 31 May 2016 at 08:39, Martin Grigorov

Re: Mult-Tenancy

2016-05-20 Thread Jeroen van der Wal
> able to isolate my tenant's data in a separate DB altogether. > > Does this make sense? > > > On Thu, May 19, 2016 at 2:20 AM, Jeroen van der Wal <jer...@stromboli.it> > wrote: > > > Hi Sunand, > > > > Because we needed more sophistication we'v

Re: Mult-Tenancy

2016-05-18 Thread Jeroen van der Wal
Hi Sunand, Because we needed more sophistication we've gone for option 3 and not implemented 1 and 2 but Datanucleus should be able to support those scenarios [1]. What use case are your trying to solve? Cheers, Jeroen [1]

Re: Code formatter settings

2016-05-13 Thread Jeroen van der Wal
Hi Kambiz, That one should still be valid. Looking the IDE documentation [1] I noticed that there is no Eclipse template section [2]. Most of us committers are working on IntelliJ I guess. Perhaps an Eclipse user can fill the gap? [1] http://isis.apache.org/guides/dg.html#2.-using-an-ide [2]

Re: Action button is appearing twice.

2016-04-21 Thread Jeroen van der Wal
Attachments are removed from mailing list messages, use a service like imugr to link screenshots. On 21 April 2016 at 13:59, Stephen Cameron wrote: > Hi Dan, > > In the attached you can see that the 'Update Street Address' and 'Update > Mail Address' action buttons

Re: New collection view and suppressing default view

2016-03-29 Thread Jeroen van der Wal
Hi Erik, I've read your question multiple times but can't envision what you're trying to accomplish. Can you perhaps elaborate with some code? Cheers, Jeroen On 29 March 2016 at 16:50, Erik de Hair wrote: > Hi, > > I've created a new collection view for sorting/re-ranking

Re: Combo box or DropDown for a dynamic set of inputs

2016-03-07 Thread Jeroen van der Wal
There is a sample in the documentation [1] with a list of integers. Would work equally with strings. [1] http://isis.apache.org/guides/rgcms.html#_rgcms_methods_prefixes_choices On 8 March 2016 at 06:10, Stephen Cameron wrote: > yes, make the property of

Re: isis.reflector.facet.cssClassFa.patterns not work ?

2016-02-25 Thread Jeroen van der Wal
Perhaps the property is overwritten by an application manifest? I've created a simple service which displays the application proprerties of a running system [1] which might help you debug the issue. [1]

Re: multiple tenancy/scoped roles in ISIS security

2016-02-23 Thread Jeroen van der Wal
nancyPath() { > return TENANT_PATH_UNIVERSAL; > } > } > > > When an entity returns a “tenancyPath” of “/accounts/xxxx” only specific > users are allowed to see it. > > All entities whose “tenancyPath” is simply “/“ can be viewed by anybody. > > > >

Re: multiple tenancy/scoped roles in ISIS security

2016-02-23 Thread Jeroen van der Wal
Hi David, Currently in isis-module-security a user can have multiple roles (general admin, financial admin, etc) and a single application tenancy (your regatta) which is not a perfect match for your requirements. Personally I would model an tuple entity like RegattaRole to specify the user,

Re: Production questions

2016-02-17 Thread Jeroen van der Wal
Schema validation and creation can be configured in persistor_datanucleus.properties [1]. It can be executed in both production and development mode and also works on an existing database. It will only append schema changes so it wil never delete or rename columns or tables. You will have to do

Re: Show route GMap3

2016-02-02 Thread Jeroen van der Wal
Hi Franco, Thank you for your contribution! It would be very helpful if you follow this procedure: - create an issue [1]; - fork the repo into your account [2]; - create a branch; - apply changes; - issue a pull request; This allows us to review your work easily and iterate on it together if

Re: Emulating left outer joins with JDOQL

2016-01-28 Thread Jeroen van der Wal
Very elegant, nice! On 28 January 2016 at 18:55, Willie Loyd Tandingan wrote: > The setup was as follows: > > final Query query = getJdoPersistenceManager().newQuery(Employee.class); > query.setResult("this, p"); > query.setResultClass(EmployeePayslipTemplate.class); >

Re: Emulating left outer joins with JDOQL

2016-01-23 Thread Jeroen van der Wal
Thanks for correcting Andy. I learned now that you can create a List collection from a JDOQL query, nice! Apache Isis however can only render List collections. Would make a nice feature though to support List rendering (pivot tables anyone?). On 22 January 2016 at 20:36, Andy

Re: Emulating left outer joins with JDOQL

2016-01-22 Thread Jeroen van der Wal
AFAIK you cannot return two types in a single query with JDOQL You could contribute the template on the the person class: @DomainService(nature = NatureOfService.VIEW_CONTRIBUTIONS_ONLY) public class PersonTemplateContributions { @Action(semantics = SemanticsOf.SAFE)

Re: Estatio Updates

2016-01-21 Thread Jeroen van der Wal
Hi Nacho, I will sync our repo with upstream Isis right now, should be there in 30 minutes. On 20 January 2016 at 18:50, Nacho Cánovas Rejón wrote: > Hi. > > > > I watched http://repository-estatio.forge.cloudbees.com/ and there aren’t > been updates since 4 of

Re: Estatio Updates

2016-01-21 Thread Jeroen van der Wal
Hmm, it's not trivial. The toolchain addition to force the build to use JDK7 fails on our Cloudbees CI. Perhaps we should create a separate release profile which enforces the use of JDK7 and disable this profile by default. Will look into this further. On 21 January 2016 at 09:00, Jeroen van der

Re: GUI resizing

2016-01-14 Thread Jeroen van der Wal
Hi Paul, We have not had a business requirement for a responsive Wicket viewer yet so there's room for improvement in that space. Cheers, Jeroen PS Attachments are stripped from the mailing list. You can use a service like imugr [1] and provide a link. [1] http://imgur.com/ On 14 January

Re: Load Data from Files at Startup

2015-12-18 Thread Jeroen van der Wal
Hi Joerg, You can also run a fixture when a service is initialised. We do that when loading seed data in Estatio:

Re: Project name

2015-11-23 Thread Jeroen van der Wal
Hi Andrew, Welcome to this mailing list! We've had a similar discussion about a year ago [1] and decided then to leave the project name as it is. But if there are new circumstances we might need to reconsider. As you may have noticed we always refer to the project as "Apache Isis", not "ISIS".

Re: mysql error when upgrade from 1.8 to 1.10

2015-11-16 Thread Jeroen van der Wal
e module tables seem to have been > > created in the default schema anyway, so presently a mystery! > > > > On Mon, Nov 16, 2015 at 10:22 PM, Jeroen van der Wal < > jer...@stromboli.it> > > wrote: > > > > > Hi James, > > > > > > Starting wi

Re: Thinking about re-introducing UML in our workflow

2015-11-15 Thread Jeroen van der Wal
All very interesting! Over the years I tried numerous modelling tools and only the low-tech ones stayed: drawing on a whiteboard, using coloured index cards [1] (learned from Dan) or using a simple online tool like yUML [2]. And I only use them to communicate the broad picture or for explorative

Snapshot repository maintenance - removing 1.9.0-SNAPSHOT

2015-11-10 Thread Jeroen van der Wal
We are doing some maintenance on our snapshot repository so you might encounter outages when pulling down Apache Isis or Isis addons snapshot releases through maven. Normal operation will be resumed at 16:00 CET. As part of the maintenance we're pruning all snapshots prior to 1.10.0-SNAPSHOT so

Re: Compuond objects

2015-11-09 Thread Jeroen van der Wal
by any chance any sample you might think of where there > is a ViewModel that is not linked to a database view, and combines some of > the objects in the app? > > Cesar. > > -Original Message- > From: Jeroen van der Wal [mailto:jer...@stromboli.it] > Sent: Thurs

Re: views created before tables?

2015-11-08 Thread Jeroen van der Wal
Have you tried raising the DN logging levels? log4j.logger.DataNucleus.Datastore.Native=DEBUG, Console log4j.logger.DataNucleus.Datastore.Schema=DEBUG, Console Are all the entities the view uses being registered? Eg: are they in the same package as your AppManifest? On 8 November 2015 at

Re: views created before tables?

2015-11-08 Thread Jeroen van der Wal
We're always here to help but please stop blaming Datanucleus and Isis before thorough root cause analysis. On 8 November 2015 at 21:45, Stephen Cameron <steve.cameron...@gmail.com> wrote: > On Mon, Nov 9, 2015 at 12:02 AM, Jeroen van der Wal <jer...@stromboli.it> > wrote: &g

Re: datanucleus foreign key name

2015-11-06 Thread Jeroen van der Wal
t;o@govertis.com> wrote: > Hi to all. > > Not sure and cannot test it now, but the "jpa” naming config. didn’t > included those suffixes. > > Try it yourself. > > Regards, > > Oscar > > > > > El 6 nov 2015, a las 14:35, Jeroen van der Wal <jer.

Re: datanucleus foreign key name

2015-11-06 Thread Jeroen van der Wal
You can write your own Datanucleus identifier factory [1]: extend DN2IdentifierFactory and overwrite getColumnIdentifierSuffix [1] http://www.datanucleus.org/documentation/extensions/rdbms_identifier_factory.html [2]

Re: isis-wicket-gmap3 version 1.10.0-SNAPSHOT not found

2015-11-05 Thread Jeroen van der Wal
Snaphots are available [1], the 1.9.0 release too [2]. Perhaps the usual cleanup, 'rm -Rf ~/.m2/repository/org/isisaddons/wicket/gmap3; mvn clean install', might bring it back in? [1] http://repository-estatio.forge.cloudbees.com/snapshot/org/isisaddons/wicket/gmap3/isis-wicket-gmap3-cpt/ [2]

Re: Compuond objects

2015-11-05 Thread Jeroen van der Wal
Here's an example where a viewmodel uses a database view: https://github.com/estatio/estatio/blob/master/estatioapp/dom/src/main/java/org/estatio/dom/invoice/viewmodel/InvoiceSummaryForInvoiceRun.java On 5 November 2015 at 17:42, Dan Haywood wrote: > It is

Re: Integer properties not displaying in 1.10.0-SNAPSHOT

2015-11-01 Thread Jeroen van der Wal
whatever) to force reload of all assets; might fix things? > > Dan > > On 1 November 2015 at 14:17, Jeroen van der Wal <jer...@stromboli.it> > wrote: > > > Hi Stephen, > > > > I've checked the kitchensink app and [1] and integers are displayed > > cor

Re: Integer properties not displaying in 1.10.0-SNAPSHOT

2015-11-01 Thread Jeroen van der Wal
Hi Stephen, I've checked the kitchensink app and [1] and integers are displayed correctly there [2]. I do see a bug with booleans not being displayed though. Perhaps you could checkout the app on your local computer too? Cheers, Jeroen [1] https://github.com/isisaddons/isis-app-kitchensink

Re: Security add on

2015-10-28 Thread Jeroen van der Wal
Hi Cesar, Could you share more info regarding your setup? Are you running from the IDE? What IDE are you using? Are you using released versions (1.9.0) everywhere? Does this also appear when running from the command line [1]? I you might guess from my reply I don't have an instant answer. This

Re: Format Layouts with translations

2015-10-27 Thread Jeroen van der Wal
Hi Cesar, Maybe it's me but I'm not quite getting what you mean with "writing translations" and "reading translations" mode. Are you referring to i18n [1]? Cheers, Jeroen PS If you like you can illustrate with some screenshots but make sure to use a service like imgur: embedded imgages are

Re: Format Layouts with translations

2015-10-27 Thread Jeroen van der Wal
fined in the json layout files. > > Cesar. > > -Original Message- > From: Jeroen van der Wal [mailto:jer...@stromboli.it] > Sent: Tuesday, October 27, 2015 3:40 PM > To: users > Subject: Re: Format Layouts with translations > > Hi Cesar, > > Maybe

Re: Format Layouts with translations

2015-10-27 Thread Jeroen van der Wal
switch back to > "Writing Transactions" and refresh the page twice it shows the right format. > > isis.services.translation.po.mode=read > > Cesar. > > -----Original Message- > From: Jeroen van der Wal [mailto:jer...@stromboli.it] > Sent: Tuesday, October 2

Re: Automatic created-by and modified-by property updates

2015-10-24 Thread Jeroen van der Wal
And removing ~/,m2/repository/org/apache/isis before mvn clean install is also worth trying. On 24 October 2015 at 12:13, Jeroen van der Wal <jer...@stromboli.it> wrote: > You could try a mvn clean install and reimport the project into Intellij. > > On 24 October 2015 at 03:01,

Re: Automatic created-by and modified-by property updates

2015-10-24 Thread Jeroen van der Wal
You could try a mvn clean install and reimport the project into Intellij. On 24 October 2015 at 03:01, Stephen Cameron wrote: > What do I have to change to go from 1.9.0 to 1.10.0-SNAPSHOT? > > I just changed version number in pom.xml but then I get the dreaded

Re: How to represent collections using contentmappingserivce

2015-10-10 Thread Jeroen van der Wal
I assume you are creating DTO's. We're using JAXB to generate the Java classes, there are multiple samples in their documentation [1]. Maybe this [2] applies to your reqirement? [1] https://jaxb.java.net/tutorial/index.html [2]

Re: CLOB property, editing the value thru wicket viewer text field instead of download/upload file

2015-10-07 Thread Jeroen van der Wal
For long text fields I use this pattern: private String myLongTextField; @javax.jdo.annotations.Column(allowsNull="true", jdbcType="CLOB", sqlType="LONGVARCHAR") public String getMyLongTextField() { return myLongTextField; } public void setMyLongTextField(final String myLongTextField) {

Re: moving to test & production, how to optimise speed of response?

2015-09-29 Thread Jeroen van der Wal
I've never seen the restful viewer outperform the wicket viewer. How did you measure? On 29 September 2015 at 12:25, Martin Grigorov wrote: > On Tue, Sep 29, 2015 at 12:22 PM, Stephen Cameron < > steve.cameron...@gmail.com> wrote: > > > I don't think its anything to do

Re: bulk updates

2015-09-24 Thread Jeroen van der Wal
Did you use it in a parented collection? It currently only works in standalone collections [1]. [1] https://issues.apache.org/jira/browse/ISIS-1035 On 24 September 2015 at 09:38, Stephen Cameron wrote: > Hi, > > I am trying to copy the 'bulk' action example in the

Re: Datanucleus issues

2015-09-03 Thread Jeroen van der Wal
Hi Stephen, See inline: On 3 September 2015 at 07:23, Stephen Cameron wrote: > I'll take stock before doing any more. I'm just burying myself the way I am > going. > > I have 'Implementing Domain Driven Design' by Vaughn Vernon on my > bookshelf, I should make use

Re: Datanucleus issues

2015-09-02 Thread Jeroen van der Wal
" in catalog "" schema > "" > >>> 22:16:33,749 [Schema 275150920@qtp-1846345504-0 DEBUG] > >>> ALTER TABLE "activity" ADD CONSTRAINT "activity_FK7" FOREIGN KEY > >>> ("provider

Re: Datanucleus issues

2015-09-02 Thread Jeroen van der Wal
FOREIGN KEY constraint already > exists on the set of columns: "activity_FK7" > at org.hsqldb.error.Error.error(Unknown Source) > at org.hsqldb.error.Error.error(Unknown Source) > at org.hsqldb.TableWorks.checkCreateForeignKey(Unknown Source) > at org.hsqldb.TableWorks.add

Re: Datanucleus issues

2015-09-01 Thread Jeroen van der Wal
me) { this.name = name; } } Hth On 1 September 2015 at 20:44, Jeroen van der Wal <jer...@stromboli.it> wrote: > If you make your abstract class public it should work fine ;-) > > Cheers, > > Jeroen > > On 1 September 2015 at 15:12, Stephen Cameron <steve.c

Re: Datanucleus issues

2015-09-01 Thread Jeroen van der Wal
dType = > container.newTransientInstance(ChildTypeOfAbstractParentType.class); > childType.setName("ChildTypeOfAbstractParentType"); > childType.setDescription("something descriptive"); > container.persistIfNotAlready(childType); &g

Re: Datanucleus issues

2015-09-01 Thread Jeroen van der Wal
Hi Stephen, Can you share some code to support your case? Cheers, Jeroen On 1 September 2015 at 12:39, Stephen Cameron wrote: > Hi, > > I've been trying today to find solutions to what seem to be Datanucleus > issues, but without much success. So rather than solve

Re: Error Help Needed

2015-08-20 Thread Jeroen van der Wal
..[attached] after changing source and target relase from 1.8 to 1.7. Kindly assist. On Wed, Aug 19, 2015 at 3:30 PM, Jeroen van der Wal jer...@stromboli.it wrote: Hi George, Looking at your output it seems there's something wrong with your Java or Maven configuration. Can you check

Re: Spiro support in Isis

2015-08-17 Thread Jeroen van der Wal
Hi Kambiz, Do you want to use Spiro as a client against an Apache Isis application or creating a bespoke interface and aiming for lighter JSON payloads? In the latter case you might want to take a look at pluggable representations of the Restful viewer [1]. Cheers, Jeroen [1]

Re: copying a property value to clipboard

2015-07-31 Thread Jeroen van der Wal
=play I can select and copy. What CSS could be causing this? This is with Firefox. On Thu, Jul 30, 2015 at 10:46 PM, Martin Grigorov mgrigo...@apache.org wrote: On Jul 30, 2015 2:36 PM, Jeroen van der Wal jer...@stromboli.it wrote: Martin is right: you can select the data even when

Re: copying a property value to clipboard

2015-07-30 Thread Jeroen van der Wal
Martin is right: you can select the data even when the mouse pointer is switched to disabled. I personally find the mouse pointer a bit intrusive too, perhaps something to polish in the future. Cheers, Jeroen On 30 July 2015 at 14:07, Martin Grigorov mgrigo...@apache.org wrote: Hi, In view

Re: code-lists and administration thereof

2015-07-29 Thread Jeroen van der Wal
You could also hide the property and create a separate getter for display purposes only: private MyProperty myProperty; @Hidden public MyProperty getMyProperty() {...} public void setMyProperty(...) {...} public String getMyPropertyName() { getMyProperty.getName(); } On 29 July 2015 at

Re: I am missing parts of the old documentation...

2015-07-20 Thread Jeroen van der Wal
Hi Per-Åke, All existing documentation has moved to the new format. Is there a specific piece of documentation that you're not able to trace? The todos in the documentation are hints for improvement but shouldn't give the impression that it's limited or incomplete. Cheers, Jeroen On 19 Jul

Re: Help whit isis

2015-07-07 Thread Jeroen van der Wal
/TesisTarjetasMejorar/TarjetasISIS 2015-07-07 17:08 GMT-03:00 Jeroen van der Wal jer...@stromboli.it: Hi Nicolas, Thank you for your interest in Apache Isis and Estatio. There are two ways to bring up a dropdown with selectable items: you can tell your domain it's bounded (eg limited

Introduction to Apache Isis, Beijing May 6/5, Hong Kong 14/5

2015-04-28 Thread Jeroen van der Wal
I will be introducing Apache Isis to Java and open source communities in Beijing and Hong Kong and invite everybody interested to join the crowd: *Beijing*Date: 6 May 2015 (Wednesday) Time: 3:00-5:30pm Venue: Cheku Incubator, 2nd Floor, 48 Hai Dian Xi Da Jie, Haidian Qu, Beijing Shi

IntelliJ boot camp, April 13, Amsterdam

2015-04-07 Thread Jeroen van der Wal
than welcome to join us. We'll start around 3pm and have pizza and drinks afterwards. Drop me an e-mail if you're interested and I'll send further details. Cheers, Jeroen van der Wal

Re: Specified key was too long in mysql

2015-04-07 Thread Jeroen van der Wal
Hi James, We're using PostgreSQL and MS SQL Server in our productions environments so we've never encountered this. If your application doesn't need the audit module you can comment out the dependency on isis-module-audit in pom.xml. Otherwise you need to clone the isis-module-audit and remove

Re: Specified key was too long in mysql

2015-04-07 Thread Jeroen van der Wal
On Tue, Apr 7, 2015 at 6:25 PM, Jeroen van der Wal jer...@stromboli.it wrote: Hi James, We're using PostgreSQL and MS SQL Server in our productions environments so we've never encountered this. If your application doesn't need the audit module you can comment out the dependency

Re: isis 1.7 and bulk download

2015-03-15 Thread Jeroen van der Wal
Hi Victor, You can take a look at Bulk Interaction [1]. This allows the user to invoke an action on selected entries. Something like this: @Action(invokeOn=InvokeOn.COLLECTION_ONLY) public Blob downloadAsZip() { if (actionInvocationContext.isFirst()){ for (Object

Re: Using the excel Haddon module

2015-02-15 Thread Jeroen van der Wal
Hi James, You have to write your own implementation for the stuff you want export and import through excel. The module contains an example in the fixture project [1]. Cheers, Jeroen [1]

Re: Grouping domain services in a single menu item

2015-02-12 Thread Jeroen van der Wal
On 12 February 2015 at 11:27, Dan Haywood d...@haywood-associates.co.uk wrote: Hi Martin, you are correct... there is no very satisfactory way to do this at the moment; instead is necessary to suppress the service and add a replacement. The .layout.json isn't appropriate here... that deals

Re: Best Documentation for writing first Isis App

2014-12-30 Thread Jeroen van der Wal
Hi Joshua, Welcome to the list! There are some nice tutorials including a companion github repositories [1]. I also recommend reading all items in the How-to section. HTH Cheers, Jeroen On Tue, Dec 30, 2014 at 7:43 PM, joshua levy joshuale...@hotmail.com wrote: I'd like to start working on

Re: wizard like form

2014-12-24 Thread Jeroen van der Wal
Hi Erik, Since you were the initiator and only user of this feature I think it lost it's momentum when you went silent suddenly. The best chance for a possible revival is creating an empty Isis project to demonstrate your issues and share that on Github. Isis version 1.8.0-SNAPSHOT is the way to

Re: Is Apache ISIS suitable for hierarchical data administration

2014-12-15 Thread Jeroen van der Wal
Hi Boris, Welcome on the mailing list! The first possibility you describe is a typical scenario for an Apache Isis application. In Estatio we have hierarchical patterns everywhere, you can start investigating Property-Unit in the asset module. Lease-LeaseItem-LeaseTerm [2] is also interesting.

Re: Programmatically hide, disable or validate for services and objects

2014-12-07 Thread Jeroen van der Wal
Hi Oscar, There's a boolean hidden() [1] method available which can be used to hide all members I but have never used that. If I need to hide services on a user level I use the Isisaddons security module [2]. There's a String validate() method available for instance validation, have it return

Re: [ANNOUNCE] New committer - Martin Grigorov

2014-12-04 Thread Jeroen van der Wal
A very warm welcome to Martin! I'll exchange the hugs at a next IsisCon ;-) Cheers, Jeroen On Thu, Dec 4, 2014 at 4:28 PM, Dan Haywood d...@haywood-associates.co.uk wrote: I'm delighted to announce that Martin Grigorov has been voted in as a committer on Isis, and also as a member of the

Re: Consultation on printing

2014-11-26 Thread Jeroen van der Wal
Hi there, A good entry point would be isis-module-docx from Isisaddons which is a wrapper around Apache POI. Cheers, Jeroen [1] https://github.com/isisaddons/isis-module-docx On Wed, Nov 26, 2014 at 4:22 PM, Martin Grigorov mgrigo...@apache.org wrote: Hi, I am not aware of an addon

Re: Consultation on printing

2014-11-26 Thread Jeroen van der Wal
Sorry, the library being used is docx4j [1] [1] http://www.docx4java.org/trac/docx4j On Wed, Nov 26, 2014 at 5:39 PM, Jeroen van der Wal jer...@stromboli.it wrote: Hi there, A good entry point would be isis-module-docx from Isisaddons which is a wrapper around Apache POI. Cheers, Jeroen

  1   2   >