Re: [VOTE] Change the name of the framework.

2022-05-24 Thread Stephen Cameron
Apache Homerun Home for objects (metamodel abased) Efficient On Wed, May 25, 2022 at 9:27 AM Andrew Voumard wrote: > Hi, > > What about Apache Chalk, or Chalkboard, or ChalkUI ? > > The idea being that with chalk, you can quickly and creatively draw up > or make up any picture. So it is with

Re: Action for selected items

2019-11-29 Thread Stephen Cameron
Have you looked at bulk actions? On Wednesday, November 27, 2019, Sandro Guimarães de Brito < sgbr...@hotmail.com> wrote: > Hi all, > > I didn’t find any examples on how to present a collection (list of items), > allow the user to select only some of them, and to execute an Action which > will

Re: Semantics enabled ESB / EAI

2019-07-18 Thread Stephen Cameron
I was interested in somewhat similar ideas before. In my case I used the W3C XForms 'engine' both to create a forms designer and forms renderer via an XML Schema based metamodel. That engine creates standard model change events and may be of interest. Have a look at Orbeon Forms product which is

Re: Major changes with Isis v2

2019-03-29 Thread Stephen Cameron
I'm not doing much programming these days, but did have a thought today about name change, for what's it's worth, 'Apache Sisi'. Maybe 'yes yes' in Spanish? Major change maybe good time to bump the old name? On Friday, March 29, 2019, Martin Grigorov wrote: > Hi, > > On Thu, Mar 28, 2019 at

Re: Concurrency Problem

2018-10-29 Thread Stephen Cameron
https://docs.oracle.com/javase/tutorial/essential/concurrency/syncmeth.html On Tue, Oct 30, 2018 at 5:25 AM Aída Betzabeth Dávila Sotelo < aida.dav...@vortech-it.com> wrote: > Hi! > > Is there something in apache isis that I could use or configure for > concurrency management? > > Currently I

Re: We'd like to remove "isis.deploymentType" ... any objections?

2018-10-28 Thread Stephen Cameron
No problem On Mon, Oct 29, 2018 at 2:47 AM Jayesh Prajapati wrote: > No problem from my side. > > @Anisha ... Do you see any problem? > > On Sun, Oct 28, 2018, 16:28 Patrick Pliessnig wrote: > > > No problem > > > > Am 28.10.2018 um 10:29 schrieb Andi Huber: > > > Hello everyone! > > > > > >

Re: Can't do a 1-1 relation between 2 classes

2018-08-29 Thread Stephen Cameron
Case sensitive file names? On Wednesday, August 29, 2018, chidii@live.com.ar < chidii@live.com.ar> wrote: > > > On 2018/08/28 22:14:11, Stephen Cameron > wrote: > > You have to use setters everywhere, that is the way DataNucleus does its > > magic, at t

Re: Can't do a 1-1 relation between 2 classes

2018-08-28 Thread Stephen Cameron
You have to use setters everywhere, that is the way DataNucleus does its magic, at the class level it has enhanced the getters and setters to manage persistence. so instead of this.domicilio = domicilio; use this.setDomicilio(domicilio); On Wed, Aug 29, 2018 at 7:44 AM chidii@live.com.ar <

Re: dependent class not found.

2018-07-15 Thread Stephen Cameron
It is referenced in homepage view model too. On Sunday, July 15, 2018, Dan Haywood wrote: > Hi Gerrie, > > The application is bootstrapped using an AppManifest - DomainAppAppManifest > in this case [1]. This references DomainAppApplicationModule which in > turn [2] references SimpleModule.

Re: menu file problem

2018-05-27 Thread Stephen Cameron
of which au.com.scds.chats.dom and au.com.scds.chats.reports are subpackages. On Sun, May 27, 2018 at 4:25 PM, Stephen Cameron <steve.cameron...@gmail.com > wrote: > Hi, > > I have a problem with my menubars.layout.xml file, not all the domain > services appear on the menu. > >

menu file problem

2018-05-27 Thread Stephen Cameron
Hi, I have a problem with my menubars.layout.xml file, not all the domain services appear on the menu. I have a single package with structure au.com.scds.chats au.com.scds.chats.dom au.com.scds.chats.fixture au.com.scds.chats.reports where there is a single Module file

Re: build error

2018-04-06 Thread Stephen Cameron
Attendee. > > > > > The fix will be to change the visibility of Attendee's constructor to > > protected or public. > > > > > HTH > > Dan > > > > > [1] http://www.datanucleus.org/products/accessplatform/jdo/enhancer.html > > > >

build error

2018-04-06 Thread Stephen Cameron
I am refactoring an existing project so it is based on a simpler more generic project. The simple generic project is all good, but when I look to create a new version of the old project, based on the new, I get an validation error (see below). It seems to be an issue with constructors,

Re: Fixtures location

2018-04-03 Thread Stephen Cameron
Yes, it does need a Module to include that package On Tue, Apr 3, 2018 at 5:05 PM, Stephen Cameron <steve.cameron...@gmail.com> wrote: > Hi, > > I've a small project based on SimpleApp archetype. > > I want to present a list of fixtures in the Prototype menu, bu

Fixtures location

2018-04-03 Thread Stephen Cameron
Hi, I've a small project based on SimpleApp archetype. I want to present a list of fixtures in the Prototype menu, but am having trouble reconfiguring. I change the default fixture specification provider class as follows: /** * Specifies where to find fixtures, and other settings. */

Re: [ANNOUNCE] New Committer - Johan Doornenbal

2018-03-25 Thread Stephen Cameron
My congratulation Johan On Sun, Mar 25, 2018 at 9:34 PM, Dan Haywood wrote: > I'm delighted to announce that Johan Doornenbal has been voted in as a > committer on Apache Isis, and also as a member of the Isis PMC. The first > gives Johan the right to commit

Re: Using database Views

2018-02-15 Thread Stephen Cameron
rors. > > Somehow these issues occur while running the integration tests with > in-memory database. > > Any help is much appreciated. > > Regards > Smitha > > On Wed, Feb 14, 2018 at 10:17 PM, Stephen Cameron < > steve.cameron...@gmail.com> wrote: > > >

Re: Using database Views

2018-02-14 Thread Stephen Cameron
://github.com/Stephen-Cameron-Data-Services/isis-chats/blob/master/reports/src/main/java/au/com/scds/chats/dom/report/view/ActivityAttendanceSummary.java The class can be seen by making your view class a ViewModel. I don't think you can use persistable views, may be wrong on that. I've had a problem

Re: Interface support

2018-01-19 Thread Stephen Cameron
nterfaces? > If so, then I guess we need to fix the metamodel validator to allow this > use-case. > > Thx > Dan > > > On Fri, 19 Jan 2018 at 11:27 Stephen Cameron <steve.cameron...@gmail.com> > wrote: > > > Hi, > > > > I'm trying to make use

Interface support

2018-01-19 Thread Stephen Cameron
Hi, I'm trying to make use of Java interfaces, seems they are supported by DataNucleus, but may not by Apache Isis from the follow build error message? [ERROR] Failed to execute goal org.apache.isis.tool:isis-maven-plugin:1.16.0:validate (default) on project event-schedule-module-base: Execution

Re: Issue in moving to 1.16.0

2018-01-10 Thread Stephen Cameron
ologies about that. > > HTH > Dan > > On Thu, 11 Jan 2018 at 04:27 Stephen Cameron <steve.cameron...@gmail.com> > wrote: > > > Hi, > > > > I can run an App in Eclipse OK, but when I try to install it on a test > > ser

Issue in moving to 1.16.0

2018-01-10 Thread Stephen Cameron
Hi, I can run an App in Eclipse OK, but when I try to install it on a test server in Tomcat i get an error perventing the app starting Caused by: java.lang.NoSuchMethodError: org.apache.isis.applib.AppManifestAbstract.(Lorg/apache/isis/applib/AppManifestAbstract$BuilderAbstract;)V at

Re: [ANN] Apache Isis version 1.16.0 Released

2018-01-09 Thread Stephen Cameron
Thanks Dan, On Tue, Jan 9, 2018 at 10:36 AM, Dan Haywood wrote: > The Apache Isis team is pleased to announce the release of Apache Isis > v1.16.0. > > New features in this release include: > * modules and simplified bootstrapping (of the application, integration

Re: clearing bookmarks from code?

2017-12-23 Thread Stephen Cameron
be able to put it into 1.16.0 I > think. > > Cheers, and Happy Christmas too! > > Dan > > > [1] https://issues.apache.org/jira/browse/ISIS-1801 > > On Fri, 22 Dec 2017 at 21:15 Stephen Cameron <steve.cameron...@gmail.com> > wrote: > > > Hi, &g

clearing bookmarks from code?

2017-12-22 Thread Stephen Cameron
Hi, I am wondering if there is a way to clear all bookmarks from inside an action? The BookmarkService doesn't provide for it. I'm experimenting with a contextual approach, where a basic user has limited menu options that all relate to a current organisation, and I allow them to switch

Re: Tenancy restriction - entity that relates to more thanoneOtherentity.

2017-12-12 Thread Stephen Cameron
ity. > > > > I wonder whether a metaphor for context could do a better job? > > > > Say, 'desk' instead of context. Then the user would have a currentDesk on > > login > > > > To model the desk an interesting question might be, who organizes the > desk? >

Re: Overriding default Repositories

2017-12-10 Thread Stephen Cameron
LDER.withAdditionalDependency(new > CustomisationsForClientA()); > public AppManifestForClientA(BUILDER); > } > > How does this sound? > > Cheers > Dan > > On Sun, 10 Dec 2017 at 02:10 Stephen Cameron <steve.cameron...@gmail.com> > wrote: >

Overriding default Repositories

2017-12-09 Thread Stephen Cameron
Hi, I want to provide an Apache Isis application and I expect others to extend the default entities, I think that the way to acheive this is for 'repository' domain services to be overridden, the new versions will create the extended custom entities instead of the default ones. In the security

Re: Tenancy restriction - entity that relates to more than oneOtherentity.

2017-12-06 Thread Stephen Cameron
ave additional fields which are Ok to be >> displayed to user with permissions, and we have taken a call that entity >> Patient is Ok to be visible only to admin users ( say “/”). >> >> Also will be exploring : https://isis.apache.org/guides >> /rgcms/rgcms.html#_rg

Re: Maven mixins in eclipse

2017-12-05 Thread Stephen Cameron
I see the same but have not tried hard to fix, I just manually reset the code level to 1.8. I need to reset the "JRE System Library" on the build path before that. I don't use mixins as yet. On Wed, Dec 6, 2017 at 5:29 PM, Martin Hesse wrote: > Hi, > > I recently tried to

Re: Tenancy restriction - entity that relates to more than one Other entity.

2017-11-30 Thread Stephen Cameron
Or, maybe just switching the role and setting a practice value after logging in, then you have to switch the role back to the simple 'login' one on logout, so that the next time they login they'll see that simple practice selection menu again. On Fri, Dec 1, 2017 at 7:49 AM, Stephen Cameron

Re: Tenancy restriction - entity that relates to more than one Other entity.

2017-11-30 Thread Stephen Cameron
I think that making use of a custom ApplicationUser (explained in the security module notes) with a property practice may be necessary. Then Practioners would either log in as a specific user depending on what practice they are working at, or you might be able to make a switch happen behind the

Re: Accessing confidential data - 2 step authentication support

2017-11-30 Thread Stephen Cameron
pport > > Hi down there! > > Erik de Hair has implemented an isis-module using Elastic Search [1]. > > Probably worth a look if speed matters. > > HTH -j > [1] https://github.com/erikdehair/isis-module-elasticsearch > > -Ursprüngliche Nachricht- > Von: Stephen Ca

Re: Customize UI behavior

2017-11-26 Thread Stephen Cameron
://github.com/Stephen-Cameron-Data-Services/isis-chats I've just moved that to Apache Isis 1.15.1 (and am starting to 'retrofit' it with more tests this week). I've started another open-source project here: https://github.com/Stephen-Cameron-Data-Services/isis-agri (I'll move that to the 'obatchi

Re: Customize UI behavior

2017-11-26 Thread Stephen Cameron
ve started develop without any knowledge base even Java EE(JDO, CDI, > ORM,...), So I decide to learn Apache Wicket and Java EE, before I start > Apache Isis again. > > On Thu, Nov 23, 2017 at 5:14 PM, Stephen Cameron < > steve.cameron...@gmail.com > > wrote: > > > Reg

Customize UI behavior

2017-11-23 Thread Stephen Cameron
g ways. But If this > possible, I will be able to build a greate development environment. So I > try all options that maybe possible for me and meet my requirement. > > It also has advantage for a Framework which be able to integrate with other > Framework for multiple options. > >

Customize UI behavior

2017-11-23 Thread Stephen Cameron
ible for me and meet my requirement. > > It also has advantage for a Framework which be able to integrate with other > Framework for multiple options. > > On Wed, Nov 22, 2017 at 4:21 PM, Stephen Cameron < > steve.cameron...@gmail.com > <javascript:_e(%7B%7D,'cvml','steve.camero

Re: Customize UI behavior

2017-11-22 Thread Stephen Cameron
>> > > > >> > > -j > >> > > [1] https://isis.apache.org/guides/ugvro/ugvro.html > >> > > > >> > > -Ursprüngliche Nachricht- > >> > > Von: SE Song [mailto:seson...@gmail.com] > &

Re: Apache ISIS - Multiple entities in Single Calendar View

2017-11-21 Thread Stephen Cameron
Simple answer is no I've done something similar with a recurring activity, but in that case the users define one such recurring activity and that has an action to create new child activities, each one a set time from the last child created. In your case it could create children for a three month

Re: Customize UI behavior

2017-11-21 Thread Stephen Cameron
10 PM, SE Song <seson...@gmail.com> wrote: > >> Sorry that I did not specified that I am using JAXB VM. It just submit to >> VM >> >> On Tue, Nov 21, 2017 at 4:48 PM, Stephen Cameron < >> steve.cameron...@gmail.com> wrote: >> >>> More details here:

Re: Customize UI behavior

2017-11-21 Thread Stephen Cameron
a bit of work to create, do them last I suggest, once all your validation logic is defined for individual properties. On Tue, Nov 21, 2017 at 8:48 PM, Stephen Cameron <steve.cameron...@gmail.com > wrote: > More details here: https://www.youtube.com/watch?v=MxewC5Pve5k > > On Tue, Nov 2

Re: Customize UI behavior

2017-11-21 Thread Stephen Cameron
More details here: https://www.youtube.com/watch?v=MxewC5Pve5k On Tue, Nov 21, 2017 at 8:46 PM, Stephen Cameron <steve.cameron...@gmail.com > wrote: > Have you tried using tabs via the xxx.layout.xml? > > My pages aren't more than one screen height and I've not had the other >

Re: Customize UI behavior

2017-11-21 Thread Stephen Cameron
Have you tried using tabs via the xxx.layout.xml? My pages aren't more than one screen height and I've not had the other problems that you indicate, Apache Isis doesn't submit a form in the sense of an HTML element, each click of OK submits the updated value to the database. On Tue, Nov 21,

Re: Apache ISIS - Time picker not shown on UI

2017-11-17 Thread Stephen Cameron
I've used String and a regex for validation. On Sat, Nov 18, 2017 at 12:37 AM, Andi Huber wrote: > I'm afraid, we have no time-picker in Isis yet! > > That said, unless I'm missing something, we might add support for ... > * org.joda.time.LocalTime > * java.time.LocalTime >

Re: Integration of Apache Isis and postgresql

2017-11-09 Thread Stephen Cameron
Can you create an JDBC connection independantly of Apache Isis? It does seem like the basic connection is the problem? On Fri, Nov 10, 2017 at 2:21 AM, Paul Benedict Jabines wrote: > Hi, > > This is in connection to my previous message about ResultSet is closed. > This

Re: Apache ISIS custom view similar to calendar view

2017-10-31 Thread Stephen Cameron
Hi Roshan, I found the book 'Wicket in Action' from Manning a good read. On Wed, Nov 1, 2017 at 3:18 PM, Roshan Vishwakarma < roshan.vishwaka...@celeritio.com> wrote: > Thanks Dan for your valuable information > > Regards, > Roshan Vishwakarma > > On Tue, Oct 31, 2017 at 1:15 PM, Dan Haywood

Re: Developing using Eclipse

2017-10-12 Thread Stephen Cameron
> > > While building you need to use maven profile or -D option named something > > like standalone. > > > > As soon as I find time I will check and share more detail with you. > > > > Cheers, > > Jayesh > > > > > > > > On 06

Re: Quartz | ISIS Metamodel Validation errors

2017-10-09 Thread Stephen Cameron
It seems a small detail, but having the explicit use of @Action probably would be better. I often have to add @Programmatic to make unexpected things go from the UI, its not the focus and so you forget it. On Mon, Oct 9, 2017 at 9:26 PM, Dan Haywood wrote: > Do we

Re: Prototyping menu item disappearing

2017-10-03 Thread Stephen Cameron
Let me read up on TERTIARY menu and get back to you. On Wed, Oct 4, 2017 at 4:04 PM, Stephen Cameron <steve.cameron...@gmail.com> wrote: > I see no such evidence of being in prototyping mode. Seems like the > web.xml setting is being ignored? > I was confused as the wicket s

Re: Prototyping menu item disappearing

2017-10-03 Thread Stephen Cameron
configuration properties (from tertiary menu), what is > the setting of Isis.deploymentType? > > Do you see prototype actions on other domain objects? > > Cheers, > Dan. > > On Tue, 3 Oct 2017, 22:22 Stephen Cameron, <steve.cameron...@gmail.com> > wrote: > > >

Re: Non-cached view models

2017-10-03 Thread Stephen Cameron
ted with > XmlAdapter(PersistentEntityAdapter.class) so that Jaxb can serialize the > reference into an oid. > > HTH, > Dan. > > On Wed, 4 Oct 2017, 04:45 Stephen Cameron, <steve.cameron...@gmail.com> > wrote: > > > Hi, > > > > I want to use view models as a wrapper arou

Non-cached view models

2017-10-03 Thread Stephen Cameron
Hi, I want to use view models as a wrapper around a persisted domain entity to simply present an alternative view of that entity. The idea of caching such a view model doesn't make sense to me, rather I want the persisted domain entity to be cached and the view model (representation of it) to be

Re: Prototyping menu item disappearing

2017-10-03 Thread Stephen Cameron
ng this is what we have in web.xml: > > > configuration > development > > > HTH > > Jeroen > > > On 2 October 2017 at 09:22, Stephen Cameron <steve.cameron...@gmail.com> > wrote: > > > Hi, > > > > Before I

Prototyping menu item disappearing

2017-10-02 Thread Stephen Cameron
Hi, Before I go looking can anyone suggest why this might occur? I am in development mode but the 'Prototyping' menu item has disappeared a while back. Is there anything else that affects its visiblity other than the deployment param in web.xml? Thanks Steve

Re: 'red star' mandatory property icon (1.15.0 feature/issue?)

2017-08-24 Thread Stephen Cameron
the current user can do nothing > to change its state). > > would you like to raise a ticket to this effect? > > Cheers > Dan > > > On Thu, 24 Aug 2017 at 10:24 Stephen Cameron <steve.cameron...@gmail.com> > wrote: > > > I notice that the mandatory pr

'red star' mandatory property icon (1.15.0 feature/issue?)

2017-08-24 Thread Stephen Cameron
I notice that the mandatory property 'red star' icon is appearing on the ends of property labels almost everywhere, even if an object is made read-only. I've not noticed it before in earlier versions. Any suggestions why? Thanks

Re: Can I make a specific class instance editable, all others not?

2017-08-24 Thread Stephen Cameron
edits for each user unless they are looking at their own > object. you can use the security module's MeService for that, I think (or > Isis' UserService otherwise). > > HTH > Dan > > > > > > On Thu, 24 Aug 2017 at 08:54 Stephen Cameron <steve.cameron...@gmail.com&g

Re: Can I make a specific class instance editable, all others not?

2017-08-24 Thread Stephen Cameron
cess to the current users profile. > > Cheers, > Kevin > > On 24 August 2017 06:14:47 CEST, Stephen Cameron < > steve.cameron...@gmail.com> wrote: > >Hi, > > > >I have implemented and extended version of ApplicationUser class called > >MyApplicationU

Can I make a specific class instance editable, all others not?

2017-08-23 Thread Stephen Cameron
Hi, I have implemented and extended version of ApplicationUser class called MyApplicationUser to allow users to add more information to their 'profile' in my web-app. They self-enrol (via initial entry of an email address, then following a link in a email sent to that address [1] ) and then add

Re: caching value objects

2017-08-17 Thread Stephen Cameron
there yet. On Thu, Aug 17, 2017 at 3:41 PM, Stephen Cameron <steve.cameron...@gmail.com > wrote: > Related to the discussion of value objects, they would seem to provide an > opportunity to cache lists of such values in domain service 'repositories', > (particularly if the

Re: How to display value object

2017-08-16 Thread Stephen Cameron
not that important in the end as its managed from a SimpleObject action and cannot be displayed via a link. You might just guess its URL I suppose. On Thu, Aug 17, 2017 at 2:56 PM, Stephen Cameron <steve.cameron...@gmail.com > wrote: > Hi, > > In my hurried initial response to this qu

caching value objects

2017-08-16 Thread Stephen Cameron
Related to the discussion of value objects, they would seem to provide an opportunity to cache lists of such values in domain service 'repositories', (particularly if they are immutable and never deleted from a database?). Something like a list of suburbs that is of restricted size but used

Re: [ANN] Apache Isis version 1.15.0 Released

2017-08-16 Thread Stephen Cameron
It's excellent, my thanks to all those involved. On Tue, Aug 15, 2017 at 5:50 PM, Johan Doornenbal wrote: > Congrats Dan. Thank you for all your work!! > > > > > On Mon, Aug 14, 2017 11:48 PM, Dan Haywood d...@haywood-associates.co.uk > wrote: > Thanks for the heads-up.

Re: How to display value object

2017-08-10 Thread Stephen Cameron
Hi Ekko, it's a user list where there may be some smart enough to offer good advice (support), not sure I fall into that group, but my suggestion would be that a value object only has getters, it's properties values are set in a constructor and never change. If a property change is needed, that

overriding EmailServiceDefault

2017-08-07 Thread Stephen Cameron
Hi, I'm configuring an Apache Isis app on Amazon EC2 and making use of the AWS Simple Email Service (SES) SMTP server. There is a problem to make use of the Isis EmailServiceDefault class as it doesn't allow you to set a username for authentication this is not an email address, it assumes the

maven build issue in security module

2017-07-24 Thread Stephen Cameron
Hi, I am getting the following error messages when I build my own module that uses the Apache Isis secuirity module. [INFO] introspecting org.apache.isis.core.metamodel.services.jdosupport.Persistable_downloadJdoMetadata: class-level details [INFO] did *not* find config properties to use JNDI

Re: persistent metamodel validation error

2017-07-04 Thread Stephen Cameron
@Discriminator needed a value="" present On Tue, Jul 4, 2017 at 10:17 PM, Stephen Cameron <steve.cameron...@gmail.com > wrote: > Hi all, > > I am getting a metamodel validation error on the following class and > cannot see a problem. I removed the same error

persistent metamodel validation error

2017-07-04 Thread Stephen Cameron
Hi all, I am getting a metamodel validation error on the following class and cannot see a problem. I removed the same error message for multiple classes by adding a schema param to @PersistenceCapable(), but for this class the message refuses to go. I'll debug it tomorrow evening, but maybe

Re: security module issue with 1.14.0

2017-06-27 Thread Stephen Cameron
been a place to start looking. On Tue, Jun 27, 2017 at 9:21 PM, Stephen Cameron <steve.cameron...@gmail.com > wrote: > I now have a class that does not give the error, so something I have done > 'differently'. > > On Mon, Jun 26, 2017 at 10:42 PM, Stephen Cameron < > st

Re: security module issue with 1.14.0

2017-06-27 Thread Stephen Cameron
I now have a class that does not give the error, so something I have done 'differently'. On Mon, Jun 26, 2017 at 10:42 PM, Stephen Cameron < steve.cameron...@gmail.com> wrote: > The routine below doesn't find a cached ObjectSpecification with > objectSpecId = "oneid.Account

Re: security module issue with 1.14.0

2017-06-26 Thread Stephen Cameron
n 26, 2017 at 10:11 PM, Stephen Cameron < steve.cameron...@gmail.com> wrote: > Hi, > > I've created a demo app with Isis 1.14.0 and am adding the security > module, I get an exception as below that seems to be consistent whatever > the permissions of the users role are

security module issue with 1.14.0

2017-06-26 Thread Stephen Cameron
Hi, I've created a demo app with Isis 1.14.0 and am adding the security module, I get an exception as below that seems to be consistent whatever the permissions of the users role are: It seems a little strange that the SpecificationLoader.loadSpecification() method is being passed a class

Re: Transcribed IsisCon 2017 write-up

2017-06-22 Thread Stephen Cameron
Hi Patrick Thanks for the response, see answers & thoughts below On Tue, Jun 20, 2017 at 1:27 AM, Patrick Pliessnig <p.pliess...@gmx.net> wrote: > Hi, my comments are below. > Patrick > > Am 18.06.2017 um 14:20 schrieb Stephen Cameron: > >> Hi All, &

Re: Transcribed IsisCon 2017 write-up

2017-06-18 Thread Stephen Cameron
Hi All, I'd like to make some kind of a contribution to this discussion, though I agree with most of what I see written. But I'd also like to be a "devils advocate" a little too. I'm interested to get more work with Apache Isis, I have one live application with a small group of users (about 10)

Re: IsisCon 2017: Welcome Party / Video Testimonals

2017-06-08 Thread Stephen Cameron
I'll get to watch the videos. :) On Thu, Jun 8, 2017 at 5:33 PM, Jeroen van der Wal <jer...@stromboli.it> wrote: > We miss you too Stephen :-) > > On 7 June 2017 at 22:41, Stephen Cameron <steve.cameron...@gmail.com> > wrote: > > > Hope there are few wrong pe

Re: IsisCon 2017: Welcome Party / Video Testimonals

2017-06-07 Thread Stephen Cameron
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 wrote: > 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. >

Re: Wicket 'Mobile' Viewer

2017-05-28 Thread Stephen Cameron
Viewer Forecast is on the list for the Isis meetup. On Mon, May 29, 2017 at 10:17 AM, Stephen Cameron < steve.cameron...@gmail.com> wrote: > Hi, > > I am currently looking for more work with Apache Isis and some potential > clients all want a mobile version, or, the chanc

Wicket 'Mobile' Viewer

2017-05-28 Thread Stephen Cameron
Hi, I am currently looking for more work with Apache Isis and some potential clients all want a mobile version, or, the chance to have one down the track. I say to them its possible using the Restful Objects API as the basis of a client layer, and I know AngularJS is popular for this now. My

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

2017-04-30 Thread Stephen Cameron
Hello, To anyone on the Apache Isis lists in Australia (or even Australasia) that is interested in meeting centrally at the same time and hopefully to listen-in on the meeting in Amsterdam (at ~5:30pm+), please contact me. More generally, it would be good to work together to get Apache Isis more

Re: DOM folder - where is it hiding?

2017-03-30 Thread Stephen Cameron
gt; > Hope that makes sense. > > Dan > > > [1] http://github.com/estatio/estatio > > [2] https://www.infoq.com/articles/monolith-defense-part-1 > > [3] https://www.infoq.com/articles/monolith-defense-part-2 > > On Thu, 30 Mar 2017, 06:34 Stephen Cameron, <steve.camer

Apache Isis in a cloud service scenario

2017-03-29 Thread Stephen Cameron
Hello, I am thinking of offering an Apache Isis app as a cloud hosted service. I need to control access to data in very efficient way, potentially storing the data-sets of many different paying clients within one database schema but only showing the data for one client in the viewer, as

Re: Multi object data entry

2017-03-19 Thread Stephen Cameron
ll things are possible... just needs the will and the time ! > > > On Sun, 19 Mar 2017 at 18:05 Stephen Cameron <steve.cameron...@gmail.com> > wrote: > > > Actually, the way to do this is to add an Single object view to the > > viewer options on a collection. Table, Excel

Re: Multi object data entry

2017-03-19 Thread Stephen Cameron
I should recall it's name. On Monday, March 20, 2017, Stephen Cameron <steve.cameron...@gmail.com> wrote: > A spreadsheet component? ZK framework has one. > > On Monday, March 20, 2017, Dan Haywood <d...@haywood-associates.co.uk > <javascript:_e(%7B%7D,'cvml','d...@

Re: Multi object data entry

2017-03-19 Thread Stephen Cameron
A spreadsheet component? ZK framework has one. On Monday, March 20, 2017, Dan Haywood wrote: > Short answer is that there is no built-in easy way to do bulk entry of sets > of data. > > What we tend to do is use the excel module (which I think from other emails >

Re: Wrong behavior when I set the parent on the child, in an 1:m assoc

2017-03-14 Thread Stephen Cameron
It should be done as a many-to-many relationship. (one Operator has many Skills and one Skill has many Operators). So you'd need a join table. The datanucleus documentation explains how with a @Join and an @Order annotation. To make your code work you'd need to create a new Skill entity each

Re: Data grid style of data entry

2017-03-08 Thread Stephen Cameron
I make use of the Bulk Action capability to do that, usually via an XYZBulkUpdateViewModel class, so a collection of (non-wrapped) domain objects doesn't get the BulkUpdate capability wherever it is displayed. see http://isis.apache.org/guides/rgant.html#_rgant-Action_invokeOn On Thu, Mar 9,

Re: Unable to import reference property columns when using isis-module-excel

2017-03-08 Thread Stephen Cameron
Code snippet? On Thu, Mar 9, 2017 at 2:04 PM, L Eder wrote: > Hi members: > > In this issue only the value property columns are imported. > Except the reference property columns, who values appear wrongly as > '(none)'. > > Has anyone experienced this issue? > Thanks, eder

Re: Many-to-many association

2017-03-02 Thread Stephen Cameron
gt; > > > > > HTH, > > Oscar > > > > > [1] https://isis.apache.org/guides/dg.html#2.-using-an-ide > [2] http://www.datanucleus.org/products/accessplatform/ > jdo/orm/many_to_many.html#set > > > > El 1 mar 2017, a las 22:30, Stephen Cameron

Re: Many-to-many association

2017-03-01 Thread Stephen Cameron
Hi, if you can make a Product a kind of Component (via inheritance) that works quite nicely in Isis, then a Product is composed of a list of Components (some being other Products) and Isis will display each them as their true type (either a Product or a Component). On Thu, Mar 2, 2017 at 7:21

Re: Wizard-style user interface for when entering data for a new domain object

2017-02-20 Thread Stephen Cameron
Previously the idea of an object builder object has been suggested, it would seem a simple approach that could work in each tab is a step. On Tuesday, February 21, 2017, L Eder wrote: > Cool Erik, thanks for your time. I browsed your code and perceived your > alternate

Re: Cached icon

2017-02-18 Thread Stephen Cameron
se- I had a > similar problem and fixed it by clearing browser's image cache. > > Best Regards > > Mike Burton > (Sent from my iPhone) > > > > > On 19 Feb 2017, at 01:25, Stephen Cameron <steve.cameron...@gmail.com > <javascript:;>> wrote: > > >

Re: Apache Isis and QueryDSL for JDO

2017-01-29 Thread Stephen Cameron
It would be nice of the Isis metamodel could be integrated with the typesafe queries provided by datanucleus to provide a dynamic query capability. It would be a big job but I imagine it's feasible. On Mon, Jan 30, 2017 at 12:08 AM, Marin Kaçaj wrote: > Hello, >

Re: global disable() method not recognised?

2017-01-11 Thread Stephen Cameron
Thanks Eric The documentation is incorrect at: http://isis.apache.org/guides/rgcms.html#_rgcms_methods_reserved_disable On Wed, Jan 11, 2017 at 6:39 PM, Erik de Hair <e.deh...@pocos.nl> wrote: > > On 01/11/2017 08:00 AM, Stephen Cameron wrote: > >> Hi, >> >>

Re: simpleapp archetype doesn't build

2016-12-29 Thread Stephen Cameron
I also apt-get update && apt-get install git). > > If you can provide any other info, I'll take another look > > Thx > Dan > > > > On Fri, 23 Dec 2016 at 08:54 Vladimir Nišević <vnise...@gmail.com> wrote: > > > Yes, I observe same issue, tried with ar

simpleapp archetype doesn't build

2016-12-22 Thread Stephen Cameron
Hi, I am try to a maven clean build on the SimpleApp archetype and get the following error message. Maybe something in the pom.xml files? [INFO] [INFO] SimpleApp Parent ... SUCCESS [ 2.553 s] [INFO] SimpleApp Simple Module FAILURE [

Re: trying out caching

2016-12-10 Thread Stephen Cameron
Thanks Andy, I will switch to the datanucleus forum for this specific problem. More generally, I did hope that adding caching was low-hanging fruit, but seems its more complex than I imagined. Maybe not the thing to tackle in the weeks before Christmas. My app is read intensive, so adding

Re: trying out caching

2016-12-10 Thread Stephen Cameron
, 2016 at 9:17 PM, Stephen Cameron <steve.cameron...@gmail.com> wrote: > No problem. > > On Fri, Dec 9, 2016 at 9:16 PM, Dan Haywood <d...@haywood-associates.co.uk> > wrote: > >> Sure.. I was just suggesting a couple of paragraphs capturing the contents >> of t

Re: trying out caching

2016-12-09 Thread Stephen Cameron
No problem. On Fri, Dec 9, 2016 at 9:16 PM, Dan Haywood <d...@haywood-associates.co.uk> wrote: > Sure.. I was just suggesting a couple of paragraphs capturing the contents > of this particular thread, ie how to enable caching. > > > On Fri, 9 Dec 2016 at 09:59 Stephen C

Re: trying out caching

2016-12-09 Thread Stephen Cameron
tb_other-techniques > [2] > https://github.com/apache/isis/blob/master/adocs/documentation/src/main/ > asciidoc/guides/_ugbtb_other-techniques.adoc > > > > On Thu, 8 Dec 2016 at 12:11 Stephen Cameron <steve.cameron...@gmail.com> > wrote: > > > Hazelcast (https://h

Re: trying out caching

2016-12-08 Thread Stephen Cameron
claims. On Thu, Dec 8, 2016 at 8:35 PM, Stephen Cameron <steve.cameron...@gmail.com> wrote: > Thanks Andy, sorry for my astounding naïveté. > > I see now there is a page where JSR-107 implementations are listed: > https://jcp.org/aboutJava/communityprocess/implementations/js

  1   2   3   4   >