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]

tellmeGen

2015-11-05 Thread carlos.sanchez
Hello guys!! I hope is going good out there :) I was wondering a little question for you: I am using an tag in the html file with a wicket id and in the java code I have an if/else that if is "if" makes new Image(X, X); and if is "else" makes a new Label(X, X); So, when I use in the html

Re: tellmeGen

2015-11-05 Thread Martin Grigorov
Hi Carlos, It is a bug, but it is in your application ;-) You need different HTML elements depending on a condition, so you cannot use just or without some extra logic. One way to fix this is to use a Fragment or a Panel for each case, i.e. a Fragment for the image and another for the Label.

Re: tellmeGen

2015-11-05 Thread carlos.sanchez
Thanks you Martin! I will fix it now. I wanted to notify you if it was a bug but I see is fixed :) Greetings from tellmeGen team too!! El 2015-11-05 13:59, Martin Grigorov escribió: Hi Carlos, It is a bug, but it is in your application ;-) You need different HTML elements depending on a

Re: Compuond objects

2015-11-05 Thread Dan Haywood
It is possible to map java domain classes to views instead of tables. Estatio has a couple of examples... perhaps Jeroen could dig out a link for you (I'm typing this on my phone). Alternatively, yes, you could use view models. These then programmatically combine the data. On your particular

RE: Compuond objects

2015-11-05 Thread Cesar Lugo
In most cases I would prefer the second choice (view models), because I want all domain logic to be applied to the corresponding objects within the view if it gets updated or inserted, which won't happen if I use database views. I will try to find some example in Estatio. I don’t think I

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

Security module

2015-11-05 Thread Cesar Lugo
Hello, I am working with the security module add on (everything 1.9.0), and I am using isisModuleSecurityRealm using in shiro.ini. I tried to access with isis-module-security-admin using pass as the password, but does not let me in. If I change back to ini.Realm then I can access with Sven / pass

RE: Security module

2015-11-05 Thread Cesar Lugo
Dan, Does the SeedSecurityModuleService init method get called? I think so, I see how users and roles being seeded in the trace. I just don't see any reference to it in the trace though. If so, does the IsisModuleSecurityRealm get called? Yes, I see it being called in the trace.

Re: Security module

2015-11-05 Thread Dan Haywood
Does the SeedSecurityModuleService init method get called? If so, does the IsisModukeSecurityRealm get called? If so, are there any exceptions in the stack trace? On 5 Nov 2015 16:20, "Cesar Lugo" wrote: > Hello, I am working with the security module add on

security module not filtering maps or summaries

2015-11-05 Thread Cesar Lugo
Hello, I found this using security module add on in combination with gmap3 add on and WicketCharts add on: In the wicket viewer, when I show tenanted entities, all entities in a collection (either parented or standalone) are filtered just fine when shown in a table, but when you switch to map

Re: Course of Interest

2015-11-05 Thread Stephen Cameron
topical article: https://www.linkedin.com/pulse/why-sql-right-querying-json-kurt-cagle On Tue, Nov 3, 2015 at 10:09 PM, Stephen Cameron wrote: > Also relevant to the discussion I think, 'dynamic' classes generated from > metadata. > > >

Re: security module not filtering maps or summaries

2015-11-05 Thread Dan Haywood
That is addressed in 1.10.0-SNAPSHOT. On 5 Nov 2015 6:05 pm, "Cesar Lugo" wrote: > Hello, I found this using security module add on in combination with gmap3 > add on and WicketCharts add on: > > > > In the wicket viewer, when I show tenanted entities, all entities in a

Compuond objects

2015-11-05 Thread Cesar Lugo
Hello. I have the need to create some objects that are compound from some other domain objects (similar to a "view" in a relational database, updatable views). Let's say I have Business with businessId and name properties, 1:n to another entity named BusinessLocation with properties