Re: title() value appears in table

2015-09-27 Thread Dan Haywood
This is configurable, see http://isis.apache.org/guides/ug.html#_ug_wicket-viewer_configuration-properties_abbreviating-titles If set to 0, then (IIRC) it will suppress the title completely (though the icon is still available as a hyperlink to the object). Cheers Dan On 27 September 2015

Re: Invalid autoComplete Support method?

2015-09-27 Thread Burbach, Matthias
Yes, tried Johan's proposal and it worked! Thanks a lot! Will raise a ticket in your JIRA. Matthias Am 27.09.15 19:48 schrieb "Dan Haywood" unter : >If that's the reason, then we should fix this. > >Matthias, could you try out John's suggestion, and if it's correct

Re: Invalid autoComplete Support method?

2015-09-27 Thread Burbach, Matthias
Sorry, signed up for your JIRA, but I am confused by the create options, they are: * Kylin * Atlas * Apache Infrastructure

Invalid autoComplete Support method?

2015-09-27 Thread Burbach, Matthias
Hi, hope I am using the correct channel for this question. If not please tell me where I can best place such questions. I am going first steps with Apache Isis by modifying the simple app. So far it works fine but I cannot understand why I am getting:

Re: Invalid autoComplete Support method?

2015-09-27 Thread Burbach, Matthias
that's exactly the button I have already tried, it brings up these three weird options... Am 27.09.15 20:23 schrieb "Martin Grigorov" unter : >Hi, > >Go to https://issues.apache.org/jira/browse/ISIS and use the blue Create >button at top center. > >Martin Grigorov >Wicket

Re: Invalid autoComplete Support method?

2015-09-27 Thread Martin Grigorov
Click on text "Create", not on the "down arrow". Martin Grigorov Wicket Training and Consulting https://twitter.com/mtgrigorov On Sun, Sep 27, 2015 at 8:26 PM, Burbach, Matthias wrote: > that's exactly the button I have already tried, it brings up these three > weird

Re: Invalid autoComplete Support method?

2015-09-27 Thread Martin Grigorov
Hi, Go to https://issues.apache.org/jira/browse/ISIS and use the blue Create button at top center. Martin Grigorov Wicket Training and Consulting https://twitter.com/mtgrigorov On Sun, Sep 27, 2015 at 8:01 PM, Burbach, Matthias wrote: > Sorry, signed up for your JIRA,

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

2015-09-27 Thread Stephen Cameron
Hi Dan, I tried this and its not correct, I get the open and close methods being called over and over whenever I open and close an object in the UI. but the jdo listener method preStore (InstanceLifecycleEvent event) never gets called. I pictured open() and close() being called just once as the

Re: security module questions

2015-09-27 Thread Stephen Cameron
re " I have the home page as it appears in the security demo" sorry, that is not so, its the right 'welcome' page. So must be just permissions. On Sun, Sep 27, 2015 at 5:13 PM, Dan Haywood wrote: > Not sure. > > What I can tell you is that the home page is

Re: security module questions

2015-09-27 Thread Stephen Cameron
sure enough, when I gave package access to domainapp.app.services.homepage to my general user - Voila! On Sun, Sep 27, 2015 at 6:09 PM, Stephen Cameron wrote: > re " I have the home page as it appears in the security demo" > > sorry, that is not so, its the right

title() value appears in table

2015-09-27 Thread Stephen Cameron
Hi, I am not sure if this is correct, that a title() value appears in a collection table column? In my Note class I have: // region > identificatiom @PropertyLayout(hidden = Where.ALL_TABLES) public String title() { return "Note: " + getSubject(); } // endregion

Re: title() value appears in table

2015-09-27 Thread Stephen Cameron
This is in my polymorphic linked Note object, so suspect that is the reason for the behaviour. On Sun, Sep 27, 2015 at 8:36 PM, Stephen Cameron wrote: > Hi, > > I am not sure if this is correct, that a title() value appears in a > collection table column? > > In