Multi select in many to many relation

2017-09-21 Thread Nikhil Dhamapurkar
Hi,

I have created a many to many relation between Practice and Practitioner using 
a join table the previous mailing list was useful[1]

I am not able to create wicket view where one can relate more than one 
practitioners with a practice Like a multi select combobox where I can select 
the associated practices with a practitioner.

Currently my Create Practitioner Code has only one Practice and it working: 
public Practitioner create(
@ParameterLayout(named="Practice") final Practice practice,
@ParameterLayout(named="Firstname") @Parameter(optionality 
= Optionality.MANDATORY) final String firstName, 
@ParameterLayout(named="MiddleName") @Parameter(optionality 
= Optionality.OPTIONAL) final String middleName,
@ParameterLayout(named="LastName") @Parameter(optionality = 
Optionality.OPTIONAL) final String lastName,
...   Other code omitted)

How Can make the below code work in wicket which allows to associate more than 
one practices with Practitioner ?

public Practitioner create(
@ParameterLayout(named="Practice") final Set 
practices,
@ParameterLayout(named="Firstname") @Parameter(optionality = 
Optionality.MANDATORY) final String firstName,

I am using isis version 1.4 , improved the simple Object project to get this 
work.

Is multiple selection for entities supported or should I give a view for the 
association table to mange the many to many relation ?

[1] 
http://markmail.org/message/645sphqek3lmz5uw#query:+page:1+mid:vrdkbheoh6vaq27w+state:results


Regards
Nikhil



Re: Summernotes not editable?

2017-09-21 Thread Dan Haywood
Hi Martin,

Thanks, I'd appreciate that.

The old isisaddons/isis-wicket-summernote repo is no more.  (Actually, I've
moved it to isisaddons-legacy/isis-wicket-summernote).

Instead, the modules now reside at incodehq/incode-platform (with
platform.incode.org being the built website).

The contributors guide (
http://platform.incode.org/pages/contributors-guide/contributors-guide.html)
explains the overall structure; the summernote code lives within
https://github.com/incodehq/incode-platform/tree/master/modules/wkt/summernote/impl
.

Loading up the quickstart will allow the summernote app to be tried out;
the example usage page (
http://platform.incode.org/quickstart/quickstart-with-example-usage.html#__quickstart-with-example-usage_modules_wicket-components)
shows the appmanifest to use for that component.

Let me know if you hit any bumps along the way (I'm sure there will be one
or two).

Thx
Dan


On Thu, 21 Sep 2017 at 15:12 Martin Grigorov  wrote:

> Hi Dan,
>
> I can take a look at the module from Wicket/WB point of view.
> Does it use latest Isis configurations ? Like AppManifest and such ?
> Please upgrade its Isis related stuff to 1.15.0 and I will fix the Wicket
> part.
>
> Martin Grigorov
> Wicket Training and Consulting
> https://twitter.com/mtgrigorov
>
> On Thu, Sep 21, 2017 at 4:22 PM, Dan Haywood  >
> wrote:
>
> > Hi Jorg,
> >
> > When I was aggregating the various addons/modules into the new
> > platform.incode.org, this was the only one that was breaking, and still
> > is.  I thought at the time it was because of the move in 1.15.x to Wicket
> > 7.x, however I think the module does reference the correct version
> > (0.10.16) of Martin's wicket-bootstrap-extensions; this is where the
> actual
> > integration with summernote actually occurs.
> >
> > Martin... this is just a heads-up that you and I probably need to work on
> > this to resurrect this component.  I don't think Jorg is doing anything
> > wrong ... it's simply never worked.
> >
> > Sorry not to be the bringer of better news...
> >
> > Dan
> >
> >
> > On Thu, 21 Sep 2017 at 14:10 Martin Grigorov 
> wrote:
> >
> > > 2017-09-21 16:01 GMT+03:00 Rade, Joerg / Kuehne + Nagel / Ham GI-DP <
> > > joerg.r...@kuehne-nagel.com>:
> > >
> > > > Hi Martin,
> > > >
> > > > by 'sn buttons' I refer to the SummerNote tool bar ([*v][B][I]...).
> > > >
> > > > I use fontawesome. Can this be a problem?
> > > >
> > > > I rule out browser (same effect on FF, Chrome, IE).
> > > >
> > >
> > > If there is a JS error then it will fail on all browsers :-)
> > > Please check the JS console.
> > >
> > >
> > > >
> > > > -j
> > > >
> > > >
> > > > -Ursprüngliche Nachricht-
> > > > Von: Martin Grigorov [mailto:mgrigo...@apache.org]
> > > > Gesendet: Donnerstag, 21. September 2017 14:45
> > > > An: users
> > > > Betreff: Re: Summernotes not editable?
> > > >
> > > > 2017-09-21 14:24 GMT+03:00 Rade, Joerg / Kuehne + Nagel / Ham GI-DP <
> > > > joerg.r...@kuehne-nagel.com>:
> > > >
> > > > > Hi,
> > > > >
> > > > > I try to use [1] with [2], [3] but can't edit nor see a frame nor
> sn
> > > > > buttons with:
> > > > >
> > > >
> > > > What is 'sn' buttons ?
> > > >
> > > > Summernote widget should look like
> > > > http://wb-mgrigorov.rhcloud.com/summernote
> > > > Check for JS errors in the Dev Tools console in your browser.
> > > >
> > > >
> > > > >
> > > > > private String summerNotes = " > > > > rgb(34, 34, 34); font-family: arial, sans-serif;\n"
> > > > > + "font-size: small; line-height: normal;\"> > > > > style=\"background-color:\n"
> > > > > + "yellow;\">Passenger ships have more than 12
> > > > > passengers.";
> > > > > @javax.jdo.annotations.Column(allowsNull = "true", length =
> 400)
> > > > >// @Property(editing = Editing.ENABLED)
> > > > > @SummernoteEditor(height = 100, maxHeight = 300)
> > > > > public String getSummerNotes() {
> > > > > return summerNotes;
> > > > > }
> > > > > public void setSummerNotes(final String summerNotes) {
> > > > > this.summerNotes = summerNotes;
> > > > > }
> > > > >
> > > > > 'Passenger ships' is marked yellow though. Un commenting @Property
> > > > > doesn't change anything.
> > > > >
> > > > > [4] says that sn isn't compatible with 1.15.0.
> > > > >
> > > > > Is that true for [3] as well?
> > > > > If Yes, which versions should I use?
> > > > > If No, what am I doing wrong?
> > > > >
> > > > > Thanks in advance
> > > > > Jörg
> > > > >
> > > > > [1] https://github.com/isisaddons-legacy/isis-wicket-summernote
> > > > > [2] 'org.apache.isis.core:isis-core-applib:jar:1.15.0'
> > > > > [3] 'org.isisaddons.wicket.summernote:isis-wicket-
> > > > > summernote-cpt:jar:1.15.0.1'
> > > > > [4] https://isis.apache.org/guides/ugvw/ugvw.html#_ugvw_
> > > > > configuration-properties
> > > > >
> > > > >
> > > > > Kühne + Nagel (AG & Co.) KG
> > > > > Rechtsform: Kommanditgesellschaft, Bremen HRA 21928, USt-IdNr.: DE
> > > > > 812773878.
> > > > > Geschäft

Re: Summernotes not editable?

2017-09-21 Thread Martin Grigorov
Hi Dan,

I can take a look at the module from Wicket/WB point of view.
Does it use latest Isis configurations ? Like AppManifest and such ?
Please upgrade its Isis related stuff to 1.15.0 and I will fix the Wicket
part.

Martin Grigorov
Wicket Training and Consulting
https://twitter.com/mtgrigorov

On Thu, Sep 21, 2017 at 4:22 PM, Dan Haywood 
wrote:

> Hi Jorg,
>
> When I was aggregating the various addons/modules into the new
> platform.incode.org, this was the only one that was breaking, and still
> is.  I thought at the time it was because of the move in 1.15.x to Wicket
> 7.x, however I think the module does reference the correct version
> (0.10.16) of Martin's wicket-bootstrap-extensions; this is where the actual
> integration with summernote actually occurs.
>
> Martin... this is just a heads-up that you and I probably need to work on
> this to resurrect this component.  I don't think Jorg is doing anything
> wrong ... it's simply never worked.
>
> Sorry not to be the bringer of better news...
>
> Dan
>
>
> On Thu, 21 Sep 2017 at 14:10 Martin Grigorov  wrote:
>
> > 2017-09-21 16:01 GMT+03:00 Rade, Joerg / Kuehne + Nagel / Ham GI-DP <
> > joerg.r...@kuehne-nagel.com>:
> >
> > > Hi Martin,
> > >
> > > by 'sn buttons' I refer to the SummerNote tool bar ([*v][B][I]...).
> > >
> > > I use fontawesome. Can this be a problem?
> > >
> > > I rule out browser (same effect on FF, Chrome, IE).
> > >
> >
> > If there is a JS error then it will fail on all browsers :-)
> > Please check the JS console.
> >
> >
> > >
> > > -j
> > >
> > >
> > > -Ursprüngliche Nachricht-
> > > Von: Martin Grigorov [mailto:mgrigo...@apache.org]
> > > Gesendet: Donnerstag, 21. September 2017 14:45
> > > An: users
> > > Betreff: Re: Summernotes not editable?
> > >
> > > 2017-09-21 14:24 GMT+03:00 Rade, Joerg / Kuehne + Nagel / Ham GI-DP <
> > > joerg.r...@kuehne-nagel.com>:
> > >
> > > > Hi,
> > > >
> > > > I try to use [1] with [2], [3] but can't edit nor see a frame nor sn
> > > > buttons with:
> > > >
> > >
> > > What is 'sn' buttons ?
> > >
> > > Summernote widget should look like
> > > http://wb-mgrigorov.rhcloud.com/summernote
> > > Check for JS errors in the Dev Tools console in your browser.
> > >
> > >
> > > >
> > > > private String summerNotes = " > > > rgb(34, 34, 34); font-family: arial, sans-serif;\n"
> > > > + "font-size: small; line-height: normal;\"> > > > style=\"background-color:\n"
> > > > + "yellow;\">Passenger ships have more than 12
> > > > passengers.";
> > > > @javax.jdo.annotations.Column(allowsNull = "true", length = 400)
> > > >// @Property(editing = Editing.ENABLED)
> > > > @SummernoteEditor(height = 100, maxHeight = 300)
> > > > public String getSummerNotes() {
> > > > return summerNotes;
> > > > }
> > > > public void setSummerNotes(final String summerNotes) {
> > > > this.summerNotes = summerNotes;
> > > > }
> > > >
> > > > 'Passenger ships' is marked yellow though. Un commenting @Property
> > > > doesn't change anything.
> > > >
> > > > [4] says that sn isn't compatible with 1.15.0.
> > > >
> > > > Is that true for [3] as well?
> > > > If Yes, which versions should I use?
> > > > If No, what am I doing wrong?
> > > >
> > > > Thanks in advance
> > > > Jörg
> > > >
> > > > [1] https://github.com/isisaddons-legacy/isis-wicket-summernote
> > > > [2] 'org.apache.isis.core:isis-core-applib:jar:1.15.0'
> > > > [3] 'org.isisaddons.wicket.summernote:isis-wicket-
> > > > summernote-cpt:jar:1.15.0.1'
> > > > [4] https://isis.apache.org/guides/ugvw/ugvw.html#_ugvw_
> > > > configuration-properties
> > > >
> > > >
> > > > Kühne + Nagel (AG & Co.) KG
> > > > Rechtsform: Kommanditgesellschaft, Bremen HRA 21928, USt-IdNr.: DE
> > > > 812773878.
> > > > Geschäftsleitung Kühne + Nagel (AG & Co.) KG: Dr. Hansjörg Rodi
> (Vors.
> > > > ), Martin Brinkmann, Holger Ketz, Jan-Hendrik Köstergarten, Nicholas
> > > > Minde, Michael Nebel, Lars Wedel, Matthias Weiner.
> > > > Persönlich haftende Gesellschafterin: Kühne & Nagel A.G., Rechtsform:
> > > > Aktiengesellschaft nach luxemburgischem Recht, HR-Nr.: B 18745,
> > > > Geschäftsführendes Verwaltungsratsmitglied: Karl Gernandt.
> > > > Geschäftsleitung Region Zentral- und Osteuropa: Dr. Hansjörg Rodi
> > > > (Vors.), Thierry Held, Uwe Hött, Richard Huhn, Holger Ketz,
> > > > Jan-Hendrik Köstergarten, Jan Kunze, Michael Nebel, Guillaume
> Sauzedde,
> > > Mustafa Sener.
> > > >
> > > > Wir arbeiten ausschließlich auf Grundlage der Allgemeinen Deutschen
> > > > Spediteurbedingungen 2017 (ADSp 2017). Hinweis: Die ADSp 2017 weichen
> > > > in Ziffer 23 hinsichtlich des Haftungshöchstbetrages für Güterschäden
> > > > (§ 431
> > > > HGB) vom Gesetz ab, indem sie die Haftung bei multimodalen
> Transporten
> > > > unter Einschluss einer Seebeförderung und bei unbekanntem Schadenort
> > > > auf 2 SZR/kg und im Übrigen die Regelhaftung von 8,33 SZR/kg
> > > > zusätzlich auf 1,25 Millionen Euro je Schadenfall sowie 2

AW: Summernotes not editable?

2017-09-21 Thread Rade, Joerg / Kuehne + Nagel / Ham GI-DP
Hi Dan, Martin,

no problem - I'll wait until you find time.

-j
-Ursprüngliche Nachricht-
Von: Dan Haywood [mailto:d...@haywood-associates.co.uk]
Gesendet: Donnerstag, 21. September 2017 15:22
An: users
Betreff: Re: Summernotes not editable?

Hi Jorg,

When I was aggregating the various addons/modules into the new 
platform.incode.org, this was the only one that was breaking, and still is.  I 
thought at the time it was because of the move in 1.15.x to Wicket 7.x, however 
I think the module does reference the correct version
(0.10.16) of Martin's wicket-bootstrap-extensions; this is where the actual 
integration with summernote actually occurs.

Martin... this is just a heads-up that you and I probably need to work on this 
to resurrect this component.  I don't think Jorg is doing anything wrong ... 
it's simply never worked.

Sorry not to be the bringer of better news...

Dan


On Thu, 21 Sep 2017 at 14:10 Martin Grigorov  wrote:

> 2017-09-21 16:01 GMT+03:00 Rade, Joerg / Kuehne + Nagel / Ham GI-DP <
> joerg.r...@kuehne-nagel.com>:
>
> > Hi Martin,
> >
> > by 'sn buttons' I refer to the SummerNote tool bar ([*v][B][I]...).
> >
> > I use fontawesome. Can this be a problem?
> >
> > I rule out browser (same effect on FF, Chrome, IE).
> >
>
> If there is a JS error then it will fail on all browsers :-) Please
> check the JS console.
>
>
> >
> > -j
> >
> >
> > -Ursprüngliche Nachricht-
> > Von: Martin Grigorov [mailto:mgrigo...@apache.org]
> > Gesendet: Donnerstag, 21. September 2017 14:45
> > An: users
> > Betreff: Re: Summernotes not editable?
> >
> > 2017-09-21 14:24 GMT+03:00 Rade, Joerg / Kuehne + Nagel / Ham GI-DP
> > <
> > joerg.r...@kuehne-nagel.com>:
> >
> > > Hi,
> > >
> > > I try to use [1] with [2], [3] but can't edit nor see a frame nor
> > > sn buttons with:
> > >
> >
> > What is 'sn' buttons ?
> >
> > Summernote widget should look like
> > http://wb-mgrigorov.rhcloud.com/summernote
> > Check for JS errors in the Dev Tools console in your browser.
> >
> >
> > >
> > > private String summerNotes = " > > rgb(34, 34, 34); font-family: arial, sans-serif;\n"
> > > + "font-size: small; line-height: normal;\"> > > style=\"background-color:\n"
> > > + "yellow;\">Passenger ships have more than 12
> > > passengers.";
> > > @javax.jdo.annotations.Column(allowsNull = "true", length = 400)
> > >// @Property(editing = Editing.ENABLED)
> > > @SummernoteEditor(height = 100, maxHeight = 300)
> > > public String getSummerNotes() {
> > > return summerNotes;
> > > }
> > > public void setSummerNotes(final String summerNotes) {
> > > this.summerNotes = summerNotes;
> > > }
> > >
> > > 'Passenger ships' is marked yellow though. Un commenting @Property
> > > doesn't change anything.
> > >
> > > [4] says that sn isn't compatible with 1.15.0.
> > >
> > > Is that true for [3] as well?
> > > If Yes, which versions should I use?
> > > If No, what am I doing wrong?
> > >
> > > Thanks in advance
> > > Jörg
> > >
> > > [1] https://github.com/isisaddons-legacy/isis-wicket-summernote
> > > [2] 'org.apache.isis.core:isis-core-applib:jar:1.15.0'
> > > [3] 'org.isisaddons.wicket.summernote:isis-wicket-
> > > summernote-cpt:jar:1.15.0.1'
> > > [4] https://isis.apache.org/guides/ugvw/ugvw.html#_ugvw_
> > > configuration-properties
> > >
> > >
> > > Kühne + Nagel (AG & Co.) KG
> > > Rechtsform: Kommanditgesellschaft, Bremen HRA 21928, USt-IdNr.: DE
> > > 812773878.
> > > Geschäftsleitung Kühne + Nagel (AG & Co.) KG: Dr. Hansjörg Rodi (Vors.
> > > ), Martin Brinkmann, Holger Ketz, Jan-Hendrik Köstergarten,
> > > Nicholas Minde, Michael Nebel, Lars Wedel, Matthias Weiner.
> > > Persönlich haftende Gesellschafterin: Kühne & Nagel A.G., Rechtsform:
> > > Aktiengesellschaft nach luxemburgischem Recht, HR-Nr.: B 18745,
> > > Geschäftsführendes Verwaltungsratsmitglied: Karl Gernandt.
> > > Geschäftsleitung Region Zentral- und Osteuropa: Dr. Hansjörg Rodi
> > > (Vors.), Thierry Held, Uwe Hött, Richard Huhn, Holger Ketz,
> > > Jan-Hendrik Köstergarten, Jan Kunze, Michael Nebel, Guillaume
> > > Sauzedde,
> > Mustafa Sener.
> > >
> > > Wir arbeiten ausschließlich auf Grundlage der Allgemeinen
> > > Deutschen Spediteurbedingungen 2017 (ADSp 2017). Hinweis: Die ADSp
> > > 2017 weichen in Ziffer 23 hinsichtlich des Haftungshöchstbetrages
> > > für Güterschäden (§ 431
> > > HGB) vom Gesetz ab, indem sie die Haftung bei multimodalen
> > > Transporten unter Einschluss einer Seebeförderung und bei
> > > unbekanntem Schadenort auf 2 SZR/kg und im Übrigen die
> > > Regelhaftung von 8,33 SZR/kg zusätzlich auf 1,25 Millionen Euro je
> > > Schadenfall sowie 2,5 Millionen Euro je Schadenereignis,
> > > mindestens aber 2 SZR/kg, beschränken. Die ADSp sind auf unserer
> > > Webseite als Download erhältlich. Auf Anfrage
> > senden wir Ihnen diese auch gerne zu.
> > >
> >
> > Kühne + Nagel (AG & Co.) KG
> > Rechtsform: Kommanditgesellschaft, Bremen HRA 21928, USt-IdNr.: DE
> > 8

Re: Summernotes not editable?

2017-09-21 Thread Dan Haywood
Hi Jorg,

When I was aggregating the various addons/modules into the new
platform.incode.org, this was the only one that was breaking, and still
is.  I thought at the time it was because of the move in 1.15.x to Wicket
7.x, however I think the module does reference the correct version
(0.10.16) of Martin's wicket-bootstrap-extensions; this is where the actual
integration with summernote actually occurs.

Martin... this is just a heads-up that you and I probably need to work on
this to resurrect this component.  I don't think Jorg is doing anything
wrong ... it's simply never worked.

Sorry not to be the bringer of better news...

Dan


On Thu, 21 Sep 2017 at 14:10 Martin Grigorov  wrote:

> 2017-09-21 16:01 GMT+03:00 Rade, Joerg / Kuehne + Nagel / Ham GI-DP <
> joerg.r...@kuehne-nagel.com>:
>
> > Hi Martin,
> >
> > by 'sn buttons' I refer to the SummerNote tool bar ([*v][B][I]...).
> >
> > I use fontawesome. Can this be a problem?
> >
> > I rule out browser (same effect on FF, Chrome, IE).
> >
>
> If there is a JS error then it will fail on all browsers :-)
> Please check the JS console.
>
>
> >
> > -j
> >
> >
> > -Ursprüngliche Nachricht-
> > Von: Martin Grigorov [mailto:mgrigo...@apache.org]
> > Gesendet: Donnerstag, 21. September 2017 14:45
> > An: users
> > Betreff: Re: Summernotes not editable?
> >
> > 2017-09-21 14:24 GMT+03:00 Rade, Joerg / Kuehne + Nagel / Ham GI-DP <
> > joerg.r...@kuehne-nagel.com>:
> >
> > > Hi,
> > >
> > > I try to use [1] with [2], [3] but can't edit nor see a frame nor sn
> > > buttons with:
> > >
> >
> > What is 'sn' buttons ?
> >
> > Summernote widget should look like
> > http://wb-mgrigorov.rhcloud.com/summernote
> > Check for JS errors in the Dev Tools console in your browser.
> >
> >
> > >
> > > private String summerNotes = " > > rgb(34, 34, 34); font-family: arial, sans-serif;\n"
> > > + "font-size: small; line-height: normal;\"> > > style=\"background-color:\n"
> > > + "yellow;\">Passenger ships have more than 12
> > > passengers.";
> > > @javax.jdo.annotations.Column(allowsNull = "true", length = 400)
> > >// @Property(editing = Editing.ENABLED)
> > > @SummernoteEditor(height = 100, maxHeight = 300)
> > > public String getSummerNotes() {
> > > return summerNotes;
> > > }
> > > public void setSummerNotes(final String summerNotes) {
> > > this.summerNotes = summerNotes;
> > > }
> > >
> > > 'Passenger ships' is marked yellow though. Un commenting @Property
> > > doesn't change anything.
> > >
> > > [4] says that sn isn't compatible with 1.15.0.
> > >
> > > Is that true for [3] as well?
> > > If Yes, which versions should I use?
> > > If No, what am I doing wrong?
> > >
> > > Thanks in advance
> > > Jörg
> > >
> > > [1] https://github.com/isisaddons-legacy/isis-wicket-summernote
> > > [2] 'org.apache.isis.core:isis-core-applib:jar:1.15.0'
> > > [3] 'org.isisaddons.wicket.summernote:isis-wicket-
> > > summernote-cpt:jar:1.15.0.1'
> > > [4] https://isis.apache.org/guides/ugvw/ugvw.html#_ugvw_
> > > configuration-properties
> > >
> > >
> > > Kühne + Nagel (AG & Co.) KG
> > > Rechtsform: Kommanditgesellschaft, Bremen HRA 21928, USt-IdNr.: DE
> > > 812773878.
> > > Geschäftsleitung Kühne + Nagel (AG & Co.) KG: Dr. Hansjörg Rodi (Vors.
> > > ), Martin Brinkmann, Holger Ketz, Jan-Hendrik Köstergarten, Nicholas
> > > Minde, Michael Nebel, Lars Wedel, Matthias Weiner.
> > > Persönlich haftende Gesellschafterin: Kühne & Nagel A.G., Rechtsform:
> > > Aktiengesellschaft nach luxemburgischem Recht, HR-Nr.: B 18745,
> > > Geschäftsführendes Verwaltungsratsmitglied: Karl Gernandt.
> > > Geschäftsleitung Region Zentral- und Osteuropa: Dr. Hansjörg Rodi
> > > (Vors.), Thierry Held, Uwe Hött, Richard Huhn, Holger Ketz,
> > > Jan-Hendrik Köstergarten, Jan Kunze, Michael Nebel, Guillaume Sauzedde,
> > Mustafa Sener.
> > >
> > > Wir arbeiten ausschließlich auf Grundlage der Allgemeinen Deutschen
> > > Spediteurbedingungen 2017 (ADSp 2017). Hinweis: Die ADSp 2017 weichen
> > > in Ziffer 23 hinsichtlich des Haftungshöchstbetrages für Güterschäden
> > > (§ 431
> > > HGB) vom Gesetz ab, indem sie die Haftung bei multimodalen Transporten
> > > unter Einschluss einer Seebeförderung und bei unbekanntem Schadenort
> > > auf 2 SZR/kg und im Übrigen die Regelhaftung von 8,33 SZR/kg
> > > zusätzlich auf 1,25 Millionen Euro je Schadenfall sowie 2,5 Millionen
> > > Euro je Schadenereignis, mindestens aber 2 SZR/kg, beschränken. Die
> > > ADSp sind auf unserer Webseite als Download erhältlich. Auf Anfrage
> > senden wir Ihnen diese auch gerne zu.
> > >
> >
> > Kühne + Nagel (AG & Co.) KG
> > Rechtsform: Kommanditgesellschaft, Bremen HRA 21928, USt-IdNr.: DE
> > 812773878.
> > Geschäftsleitung Kühne + Nagel (AG & Co.) KG: Dr. Hansjörg Rodi (Vors. ),
> > Martin Brinkmann, Holger Ketz, Jan-Hendrik Köstergarten, Nicholas Minde,
> > Michael Nebel, Lars Wedel, Matthias Weiner.
> > Persönlich haftende Gesellschafterin: Kühne & Nagel A.G.,

Re: Summernotes not editable?

2017-09-21 Thread Martin Grigorov
2017-09-21 16:01 GMT+03:00 Rade, Joerg / Kuehne + Nagel / Ham GI-DP <
joerg.r...@kuehne-nagel.com>:

> Hi Martin,
>
> by 'sn buttons' I refer to the SummerNote tool bar ([*v][B][I]...).
>
> I use fontawesome. Can this be a problem?
>
> I rule out browser (same effect on FF, Chrome, IE).
>

If there is a JS error then it will fail on all browsers :-)
Please check the JS console.


>
> -j
>
>
> -Ursprüngliche Nachricht-
> Von: Martin Grigorov [mailto:mgrigo...@apache.org]
> Gesendet: Donnerstag, 21. September 2017 14:45
> An: users
> Betreff: Re: Summernotes not editable?
>
> 2017-09-21 14:24 GMT+03:00 Rade, Joerg / Kuehne + Nagel / Ham GI-DP <
> joerg.r...@kuehne-nagel.com>:
>
> > Hi,
> >
> > I try to use [1] with [2], [3] but can't edit nor see a frame nor sn
> > buttons with:
> >
>
> What is 'sn' buttons ?
>
> Summernote widget should look like
> http://wb-mgrigorov.rhcloud.com/summernote
> Check for JS errors in the Dev Tools console in your browser.
>
>
> >
> > private String summerNotes = " > rgb(34, 34, 34); font-family: arial, sans-serif;\n"
> > + "font-size: small; line-height: normal;\"> > style=\"background-color:\n"
> > + "yellow;\">Passenger ships have more than 12
> > passengers.";
> > @javax.jdo.annotations.Column(allowsNull = "true", length = 400)
> >// @Property(editing = Editing.ENABLED)
> > @SummernoteEditor(height = 100, maxHeight = 300)
> > public String getSummerNotes() {
> > return summerNotes;
> > }
> > public void setSummerNotes(final String summerNotes) {
> > this.summerNotes = summerNotes;
> > }
> >
> > 'Passenger ships' is marked yellow though. Un commenting @Property
> > doesn't change anything.
> >
> > [4] says that sn isn't compatible with 1.15.0.
> >
> > Is that true for [3] as well?
> > If Yes, which versions should I use?
> > If No, what am I doing wrong?
> >
> > Thanks in advance
> > Jörg
> >
> > [1] https://github.com/isisaddons-legacy/isis-wicket-summernote
> > [2] 'org.apache.isis.core:isis-core-applib:jar:1.15.0'
> > [3] 'org.isisaddons.wicket.summernote:isis-wicket-
> > summernote-cpt:jar:1.15.0.1'
> > [4] https://isis.apache.org/guides/ugvw/ugvw.html#_ugvw_
> > configuration-properties
> >
> >
> > Kühne + Nagel (AG & Co.) KG
> > Rechtsform: Kommanditgesellschaft, Bremen HRA 21928, USt-IdNr.: DE
> > 812773878.
> > Geschäftsleitung Kühne + Nagel (AG & Co.) KG: Dr. Hansjörg Rodi (Vors.
> > ), Martin Brinkmann, Holger Ketz, Jan-Hendrik Köstergarten, Nicholas
> > Minde, Michael Nebel, Lars Wedel, Matthias Weiner.
> > Persönlich haftende Gesellschafterin: Kühne & Nagel A.G., Rechtsform:
> > Aktiengesellschaft nach luxemburgischem Recht, HR-Nr.: B 18745,
> > Geschäftsführendes Verwaltungsratsmitglied: Karl Gernandt.
> > Geschäftsleitung Region Zentral- und Osteuropa: Dr. Hansjörg Rodi
> > (Vors.), Thierry Held, Uwe Hött, Richard Huhn, Holger Ketz,
> > Jan-Hendrik Köstergarten, Jan Kunze, Michael Nebel, Guillaume Sauzedde,
> Mustafa Sener.
> >
> > Wir arbeiten ausschließlich auf Grundlage der Allgemeinen Deutschen
> > Spediteurbedingungen 2017 (ADSp 2017). Hinweis: Die ADSp 2017 weichen
> > in Ziffer 23 hinsichtlich des Haftungshöchstbetrages für Güterschäden
> > (§ 431
> > HGB) vom Gesetz ab, indem sie die Haftung bei multimodalen Transporten
> > unter Einschluss einer Seebeförderung und bei unbekanntem Schadenort
> > auf 2 SZR/kg und im Übrigen die Regelhaftung von 8,33 SZR/kg
> > zusätzlich auf 1,25 Millionen Euro je Schadenfall sowie 2,5 Millionen
> > Euro je Schadenereignis, mindestens aber 2 SZR/kg, beschränken. Die
> > ADSp sind auf unserer Webseite als Download erhältlich. Auf Anfrage
> senden wir Ihnen diese auch gerne zu.
> >
>
> Kühne + Nagel (AG & Co.) KG
> Rechtsform: Kommanditgesellschaft, Bremen HRA 21928, USt-IdNr.: DE
> 812773878.
> Geschäftsleitung Kühne + Nagel (AG & Co.) KG: Dr. Hansjörg Rodi (Vors. ),
> Martin Brinkmann, Holger Ketz, Jan-Hendrik Köstergarten, Nicholas Minde,
> Michael Nebel, Lars Wedel, Matthias Weiner.
> Persönlich haftende Gesellschafterin: Kühne & Nagel A.G., Rechtsform:
> Aktiengesellschaft nach luxemburgischem Recht, HR-Nr.: B 18745,
> Geschäftsführendes Verwaltungsratsmitglied: Karl Gernandt.
> Geschäftsleitung Region Zentral- und Osteuropa: Dr. Hansjörg Rodi (Vors.),
> Thierry Held, Uwe Hött, Richard Huhn, Holger Ketz, Jan-Hendrik
> Köstergarten, Jan Kunze, Michael Nebel, Guillaume Sauzedde, Mustafa Sener.
>
> Wir arbeiten ausschließlich auf Grundlage der Allgemeinen Deutschen
> Spediteurbedingungen 2017 (ADSp 2017). Hinweis: Die ADSp 2017 weichen in
> Ziffer 23 hinsichtlich des Haftungshöchstbetrages für Güterschäden (§ 431
> HGB) vom Gesetz ab, indem sie die Haftung bei multimodalen Transporten
> unter Einschluss einer Seebeförderung und bei unbekanntem Schadenort auf 2
> SZR/kg und im Übrigen die Regelhaftung von 8,33 SZR/kg zusätzlich auf 1,25
> Millionen Euro je Schadenfall sowie 2,5 Millionen Euro je Schadenereignis,
> mindestens aber 2 SZR/kg, beschr

AW: Summernotes not editable?

2017-09-21 Thread Rade, Joerg / Kuehne + Nagel / Ham GI-DP
Hi Martin,

by 'sn buttons' I refer to the SummerNote tool bar ([*v][B][I]...).

I use fontawesome. Can this be a problem?

I rule out browser (same effect on FF, Chrome, IE).

-j


-Ursprüngliche Nachricht-
Von: Martin Grigorov [mailto:mgrigo...@apache.org]
Gesendet: Donnerstag, 21. September 2017 14:45
An: users
Betreff: Re: Summernotes not editable?

2017-09-21 14:24 GMT+03:00 Rade, Joerg / Kuehne + Nagel / Ham GI-DP <
joerg.r...@kuehne-nagel.com>:

> Hi,
>
> I try to use [1] with [2], [3] but can't edit nor see a frame nor sn
> buttons with:
>

What is 'sn' buttons ?

Summernote widget should look like
http://wb-mgrigorov.rhcloud.com/summernote
Check for JS errors in the Dev Tools console in your browser.


>
> private String summerNotes = " rgb(34, 34, 34); font-family: arial, sans-serif;\n"
> + "font-size: small; line-height: normal;\"> style=\"background-color:\n"
> + "yellow;\">Passenger ships have more than 12
> passengers.";
> @javax.jdo.annotations.Column(allowsNull = "true", length = 400)
>// @Property(editing = Editing.ENABLED)
> @SummernoteEditor(height = 100, maxHeight = 300)
> public String getSummerNotes() {
> return summerNotes;
> }
> public void setSummerNotes(final String summerNotes) {
> this.summerNotes = summerNotes;
> }
>
> 'Passenger ships' is marked yellow though. Un commenting @Property
> doesn't change anything.
>
> [4] says that sn isn't compatible with 1.15.0.
>
> Is that true for [3] as well?
> If Yes, which versions should I use?
> If No, what am I doing wrong?
>
> Thanks in advance
> Jörg
>
> [1] https://github.com/isisaddons-legacy/isis-wicket-summernote
> [2] 'org.apache.isis.core:isis-core-applib:jar:1.15.0'
> [3] 'org.isisaddons.wicket.summernote:isis-wicket-
> summernote-cpt:jar:1.15.0.1'
> [4] https://isis.apache.org/guides/ugvw/ugvw.html#_ugvw_
> configuration-properties
>
>
> Kühne + Nagel (AG & Co.) KG
> Rechtsform: Kommanditgesellschaft, Bremen HRA 21928, USt-IdNr.: DE
> 812773878.
> Geschäftsleitung Kühne + Nagel (AG & Co.) KG: Dr. Hansjörg Rodi (Vors.
> ), Martin Brinkmann, Holger Ketz, Jan-Hendrik Köstergarten, Nicholas
> Minde, Michael Nebel, Lars Wedel, Matthias Weiner.
> Persönlich haftende Gesellschafterin: Kühne & Nagel A.G., Rechtsform:
> Aktiengesellschaft nach luxemburgischem Recht, HR-Nr.: B 18745,
> Geschäftsführendes Verwaltungsratsmitglied: Karl Gernandt.
> Geschäftsleitung Region Zentral- und Osteuropa: Dr. Hansjörg Rodi
> (Vors.), Thierry Held, Uwe Hött, Richard Huhn, Holger Ketz,
> Jan-Hendrik Köstergarten, Jan Kunze, Michael Nebel, Guillaume Sauzedde, 
> Mustafa Sener.
>
> Wir arbeiten ausschließlich auf Grundlage der Allgemeinen Deutschen
> Spediteurbedingungen 2017 (ADSp 2017). Hinweis: Die ADSp 2017 weichen
> in Ziffer 23 hinsichtlich des Haftungshöchstbetrages für Güterschäden
> (§ 431
> HGB) vom Gesetz ab, indem sie die Haftung bei multimodalen Transporten
> unter Einschluss einer Seebeförderung und bei unbekanntem Schadenort
> auf 2 SZR/kg und im Übrigen die Regelhaftung von 8,33 SZR/kg
> zusätzlich auf 1,25 Millionen Euro je Schadenfall sowie 2,5 Millionen
> Euro je Schadenereignis, mindestens aber 2 SZR/kg, beschränken. Die
> ADSp sind auf unserer Webseite als Download erhältlich. Auf Anfrage senden 
> wir Ihnen diese auch gerne zu.
>

Kühne + Nagel (AG & Co.) KG
Rechtsform: Kommanditgesellschaft, Bremen HRA 21928, USt-IdNr.: DE 812773878.
Geschäftsleitung Kühne + Nagel (AG & Co.) KG: Dr. Hansjörg Rodi (Vors. ), 
Martin Brinkmann, Holger Ketz, Jan-Hendrik Köstergarten, Nicholas Minde, 
Michael Nebel, Lars Wedel, Matthias Weiner.
Persönlich haftende Gesellschafterin: Kühne & Nagel A.G., Rechtsform: 
Aktiengesellschaft nach luxemburgischem Recht, HR-Nr.: B 18745, 
Geschäftsführendes Verwaltungsratsmitglied: Karl Gernandt.
Geschäftsleitung Region Zentral- und Osteuropa: Dr. Hansjörg Rodi (Vors.), 
Thierry Held, Uwe Hött, Richard Huhn, Holger Ketz, Jan-Hendrik Köstergarten, 
Jan Kunze, Michael Nebel, Guillaume Sauzedde, Mustafa Sener.

Wir arbeiten ausschließlich auf Grundlage der Allgemeinen Deutschen 
Spediteurbedingungen 2017 (ADSp 2017). Hinweis: Die ADSp 2017 weichen in Ziffer 
23 hinsichtlich des Haftungshöchstbetrages für Güterschäden (§ 431 HGB) vom 
Gesetz ab, indem sie die Haftung bei multimodalen Transporten unter Einschluss 
einer Seebeförderung und bei unbekanntem Schadenort auf 2 SZR/kg und im Übrigen 
die Regelhaftung von 8,33 SZR/kg zusätzlich auf 1,25 Millionen Euro je 
Schadenfall sowie 2,5 Millionen Euro je Schadenereignis, mindestens aber 2 
SZR/kg, beschränken. Die ADSp sind auf unserer Webseite als Download 
erhältlich. Auf Anfrage senden wir Ihnen diese auch gerne zu.


Re: Summernotes not editable?

2017-09-21 Thread Martin Grigorov
2017-09-21 14:24 GMT+03:00 Rade, Joerg / Kuehne + Nagel / Ham GI-DP <
joerg.r...@kuehne-nagel.com>:

> Hi,
>
> I try to use [1] with [2], [3] but can't edit nor see a frame nor sn
> buttons with:
>

What is 'sn' buttons ?

Summernote widget should look like
http://wb-mgrigorov.rhcloud.com/summernote
Check for JS errors in the Dev Tools console in your browser.


>
> private String summerNotes = " 34, 34); font-family: arial, sans-serif;\n"
> + "font-size: small; line-height: normal;\"> style=\"background-color:\n"
> + "yellow;\">Passenger ships have more than 12
> passengers.";
> @javax.jdo.annotations.Column(allowsNull = "true", length = 400)
>// @Property(editing = Editing.ENABLED)
> @SummernoteEditor(height = 100, maxHeight = 300)
> public String getSummerNotes() {
> return summerNotes;
> }
> public void setSummerNotes(final String summerNotes) {
> this.summerNotes = summerNotes;
> }
>
> 'Passenger ships' is marked yellow though. Un commenting @Property doesn't
> change anything.
>
> [4] says that sn isn't compatible with 1.15.0.
>
> Is that true for [3] as well?
> If Yes, which versions should I use?
> If No, what am I doing wrong?
>
> Thanks in advance
> Jörg
>
> [1] https://github.com/isisaddons-legacy/isis-wicket-summernote
> [2] 'org.apache.isis.core:isis-core-applib:jar:1.15.0'
> [3] 'org.isisaddons.wicket.summernote:isis-wicket-
> summernote-cpt:jar:1.15.0.1'
> [4] https://isis.apache.org/guides/ugvw/ugvw.html#_ugvw_
> configuration-properties
>
>
> Kühne + Nagel (AG & Co.) KG
> Rechtsform: Kommanditgesellschaft, Bremen HRA 21928, USt-IdNr.: DE
> 812773878.
> Geschäftsleitung Kühne + Nagel (AG & Co.) KG: Dr. Hansjörg Rodi (Vors. ),
> Martin Brinkmann, Holger Ketz, Jan-Hendrik Köstergarten, Nicholas Minde,
> Michael Nebel, Lars Wedel, Matthias Weiner.
> Persönlich haftende Gesellschafterin: Kühne & Nagel A.G., Rechtsform:
> Aktiengesellschaft nach luxemburgischem Recht, HR-Nr.: B 18745,
> Geschäftsführendes Verwaltungsratsmitglied: Karl Gernandt.
> Geschäftsleitung Region Zentral- und Osteuropa: Dr. Hansjörg Rodi (Vors.),
> Thierry Held, Uwe Hött, Richard Huhn, Holger Ketz, Jan-Hendrik
> Köstergarten, Jan Kunze, Michael Nebel, Guillaume Sauzedde, Mustafa Sener.
>
> Wir arbeiten ausschließlich auf Grundlage der Allgemeinen Deutschen
> Spediteurbedingungen 2017 (ADSp 2017). Hinweis: Die ADSp 2017 weichen in
> Ziffer 23 hinsichtlich des Haftungshöchstbetrages für Güterschäden (§ 431
> HGB) vom Gesetz ab, indem sie die Haftung bei multimodalen Transporten
> unter Einschluss einer Seebeförderung und bei unbekanntem Schadenort auf 2
> SZR/kg und im Übrigen die Regelhaftung von 8,33 SZR/kg zusätzlich auf 1,25
> Millionen Euro je Schadenfall sowie 2,5 Millionen Euro je Schadenereignis,
> mindestens aber 2 SZR/kg, beschränken. Die ADSp sind auf unserer Webseite
> als Download erhältlich. Auf Anfrage senden wir Ihnen diese auch gerne zu.
>


AW: Summernotes not editable?

2017-09-21 Thread Rade, Joerg / Kuehne + Nagel / Ham GI-DP
Hi Martin,

thanks for the fast response, but removing \n from the string didn't change 
anything.

Using [5], [6] has the same effect.
-j

[5] 'org.apache.isis.core:isis-core-applib:jar:1.14.0'
[6] 'org.isisaddons.wicket.summernote:isis-wicket-summernote-cpt:jar:1.14.0'
-Ursprüngliche Nachricht-
Von: Martin Grigorov [mailto:mgrigo...@apache.org]
Gesendet: Donnerstag, 21. September 2017 14:28
An: users
Betreff: Re: Summernotes not editable?

Hi,


2017-09-21 14:24 GMT+03:00 Rade, Joerg / Kuehne + Nagel / Ham GI-DP <
joerg.r...@kuehne-nagel.com>:

> Hi,
>
> I try to use [1] with [2], [3] but can't edit nor see a frame nor sn
> buttons with:
>
> private String summerNotes = " rgb(34, 34, 34); font-family: arial, sans-serif;\n"
>

Try by removing the \n's from the string.

+ "font-size: small; line-height: normal;\"> style=\"background-color:\n"
> + "yellow;\">Passenger ships have more than 12
> passengers.";
> @javax.jdo.annotations.Column(allowsNull = "true", length = 400)
>// @Property(editing = Editing.ENABLED)
> @SummernoteEditor(height = 100, maxHeight = 300)
> public String getSummerNotes() {
> return summerNotes;
> }
> public void setSummerNotes(final String summerNotes) {
> this.summerNotes = summerNotes;
> }
>
> 'Passenger ships' is marked yellow though. Un commenting @Property
> doesn't change anything.
>
> [4] says that sn isn't compatible with 1.15.0.
>
> Is that true for [3] as well?
> If Yes, which versions should I use?
> If No, what am I doing wrong?
>
> Thanks in advance
> Jörg
>
> [1] https://github.com/isisaddons-legacy/isis-wicket-summernote
> [2] 'org.apache.isis.core:isis-core-applib:jar:1.15.0'
> [3] 'org.isisaddons.wicket.summernote:isis-wicket-
> summernote-cpt:jar:1.15.0.1'
> [4] https://isis.apache.org/guides/ugvw/ugvw.html#_ugvw_
> configuration-properties
>
>
> Kühne + Nagel (AG & Co.) KG
> Rechtsform: Kommanditgesellschaft, Bremen HRA 21928, USt-IdNr.: DE
> 812773878.
> Geschäftsleitung Kühne + Nagel (AG & Co.) KG: Dr. Hansjörg Rodi (Vors.
> ), Martin Brinkmann, Holger Ketz, Jan-Hendrik Köstergarten, Nicholas
> Minde, Michael Nebel, Lars Wedel, Matthias Weiner.
> Persönlich haftende Gesellschafterin: Kühne & Nagel A.G., Rechtsform:
> Aktiengesellschaft nach luxemburgischem Recht, HR-Nr.: B 18745,
> Geschäftsführendes Verwaltungsratsmitglied: Karl Gernandt.
> Geschäftsleitung Region Zentral- und Osteuropa: Dr. Hansjörg Rodi
> (Vors.), Thierry Held, Uwe Hött, Richard Huhn, Holger Ketz,
> Jan-Hendrik Köstergarten, Jan Kunze, Michael Nebel, Guillaume Sauzedde, 
> Mustafa Sener.
>
> Wir arbeiten ausschließlich auf Grundlage der Allgemeinen Deutschen
> Spediteurbedingungen 2017 (ADSp 2017). Hinweis: Die ADSp 2017 weichen
> in Ziffer 23 hinsichtlich des Haftungshöchstbetrages für Güterschäden
> (§ 431
> HGB) vom Gesetz ab, indem sie die Haftung bei multimodalen Transporten
> unter Einschluss einer Seebeförderung und bei unbekanntem Schadenort
> auf 2 SZR/kg und im Übrigen die Regelhaftung von 8,33 SZR/kg
> zusätzlich auf 1,25 Millionen Euro je Schadenfall sowie 2,5 Millionen
> Euro je Schadenereignis, mindestens aber 2 SZR/kg, beschränken. Die
> ADSp sind auf unserer Webseite als Download erhältlich. Auf Anfrage senden 
> wir Ihnen diese auch gerne zu.
>

Kühne + Nagel (AG & Co.) KG
Rechtsform: Kommanditgesellschaft, Bremen HRA 21928, USt-IdNr.: DE 812773878.
Geschäftsleitung Kühne + Nagel (AG & Co.) KG: Dr. Hansjörg Rodi (Vors. ), 
Martin Brinkmann, Holger Ketz, Jan-Hendrik Köstergarten, Nicholas Minde, 
Michael Nebel, Lars Wedel, Matthias Weiner.
Persönlich haftende Gesellschafterin: Kühne & Nagel A.G., Rechtsform: 
Aktiengesellschaft nach luxemburgischem Recht, HR-Nr.: B 18745, 
Geschäftsführendes Verwaltungsratsmitglied: Karl Gernandt.
Geschäftsleitung Region Zentral- und Osteuropa: Dr. Hansjörg Rodi (Vors.), 
Thierry Held, Uwe Hött, Richard Huhn, Holger Ketz, Jan-Hendrik Köstergarten, 
Jan Kunze, Michael Nebel, Guillaume Sauzedde, Mustafa Sener.

Wir arbeiten ausschließlich auf Grundlage der Allgemeinen Deutschen 
Spediteurbedingungen 2017 (ADSp 2017). Hinweis: Die ADSp 2017 weichen in Ziffer 
23 hinsichtlich des Haftungshöchstbetrages für Güterschäden (§ 431 HGB) vom 
Gesetz ab, indem sie die Haftung bei multimodalen Transporten unter Einschluss 
einer Seebeförderung und bei unbekanntem Schadenort auf 2 SZR/kg und im Übrigen 
die Regelhaftung von 8,33 SZR/kg zusätzlich auf 1,25 Millionen Euro je 
Schadenfall sowie 2,5 Millionen Euro je Schadenereignis, mindestens aber 2 
SZR/kg, beschränken. Die ADSp sind auf unserer Webseite als Download 
erhältlich. Auf Anfrage senden wir Ihnen diese auch gerne zu.


Re: Summernotes not editable?

2017-09-21 Thread Martin Grigorov
Hi,


2017-09-21 14:24 GMT+03:00 Rade, Joerg / Kuehne + Nagel / Ham GI-DP <
joerg.r...@kuehne-nagel.com>:

> Hi,
>
> I try to use [1] with [2], [3] but can't edit nor see a frame nor sn
> buttons with:
>
> private String summerNotes = " 34, 34); font-family: arial, sans-serif;\n"
>

Try by removing the \n's from the string.

+ "font-size: small; line-height: normal;\"> style=\"background-color:\n"
> + "yellow;\">Passenger ships have more than 12
> passengers.";
> @javax.jdo.annotations.Column(allowsNull = "true", length = 400)
>// @Property(editing = Editing.ENABLED)
> @SummernoteEditor(height = 100, maxHeight = 300)
> public String getSummerNotes() {
> return summerNotes;
> }
> public void setSummerNotes(final String summerNotes) {
> this.summerNotes = summerNotes;
> }
>
> 'Passenger ships' is marked yellow though. Un commenting @Property doesn't
> change anything.
>
> [4] says that sn isn't compatible with 1.15.0.
>
> Is that true for [3] as well?
> If Yes, which versions should I use?
> If No, what am I doing wrong?
>
> Thanks in advance
> Jörg
>
> [1] https://github.com/isisaddons-legacy/isis-wicket-summernote
> [2] 'org.apache.isis.core:isis-core-applib:jar:1.15.0'
> [3] 'org.isisaddons.wicket.summernote:isis-wicket-
> summernote-cpt:jar:1.15.0.1'
> [4] https://isis.apache.org/guides/ugvw/ugvw.html#_ugvw_
> configuration-properties
>
>
> Kühne + Nagel (AG & Co.) KG
> Rechtsform: Kommanditgesellschaft, Bremen HRA 21928, USt-IdNr.: DE
> 812773878.
> Geschäftsleitung Kühne + Nagel (AG & Co.) KG: Dr. Hansjörg Rodi (Vors. ),
> Martin Brinkmann, Holger Ketz, Jan-Hendrik Köstergarten, Nicholas Minde,
> Michael Nebel, Lars Wedel, Matthias Weiner.
> Persönlich haftende Gesellschafterin: Kühne & Nagel A.G., Rechtsform:
> Aktiengesellschaft nach luxemburgischem Recht, HR-Nr.: B 18745,
> Geschäftsführendes Verwaltungsratsmitglied: Karl Gernandt.
> Geschäftsleitung Region Zentral- und Osteuropa: Dr. Hansjörg Rodi (Vors.),
> Thierry Held, Uwe Hött, Richard Huhn, Holger Ketz, Jan-Hendrik
> Köstergarten, Jan Kunze, Michael Nebel, Guillaume Sauzedde, Mustafa Sener.
>
> Wir arbeiten ausschließlich auf Grundlage der Allgemeinen Deutschen
> Spediteurbedingungen 2017 (ADSp 2017). Hinweis: Die ADSp 2017 weichen in
> Ziffer 23 hinsichtlich des Haftungshöchstbetrages für Güterschäden (§ 431
> HGB) vom Gesetz ab, indem sie die Haftung bei multimodalen Transporten
> unter Einschluss einer Seebeförderung und bei unbekanntem Schadenort auf 2
> SZR/kg und im Übrigen die Regelhaftung von 8,33 SZR/kg zusätzlich auf 1,25
> Millionen Euro je Schadenfall sowie 2,5 Millionen Euro je Schadenereignis,
> mindestens aber 2 SZR/kg, beschränken. Die ADSp sind auf unserer Webseite
> als Download erhältlich. Auf Anfrage senden wir Ihnen diese auch gerne zu.
>


Summernotes not editable?

2017-09-21 Thread Rade, Joerg / Kuehne + Nagel / Ham GI-DP
Hi,

I try to use [1] with [2], [3] but can't edit nor see a frame nor sn buttons 
with:

private String summerNotes = "Passenger ships have more than 12 
passengers.";
@javax.jdo.annotations.Column(allowsNull = "true", length = 400)
   // @Property(editing = Editing.ENABLED)
@SummernoteEditor(height = 100, maxHeight = 300)
public String getSummerNotes() {
return summerNotes;
}
public void setSummerNotes(final String summerNotes) {
this.summerNotes = summerNotes;
}

'Passenger ships' is marked yellow though. Un commenting @Property doesn't 
change anything.

[4] says that sn isn't compatible with 1.15.0.

Is that true for [3] as well?
If Yes, which versions should I use?
If No, what am I doing wrong?

Thanks in advance
Jörg

[1] https://github.com/isisaddons-legacy/isis-wicket-summernote
[2] 'org.apache.isis.core:isis-core-applib:jar:1.15.0'
[3] 'org.isisaddons.wicket.summernote:isis-wicket-summernote-cpt:jar:1.15.0.1'
[4] https://isis.apache.org/guides/ugvw/ugvw.html#_ugvw_configuration-properties


Kühne + Nagel (AG & Co.) KG
Rechtsform: Kommanditgesellschaft, Bremen HRA 21928, USt-IdNr.: DE 812773878.
Geschäftsleitung Kühne + Nagel (AG & Co.) KG: Dr. Hansjörg Rodi (Vors. ), 
Martin Brinkmann, Holger Ketz, Jan-Hendrik Köstergarten, Nicholas Minde, 
Michael Nebel, Lars Wedel, Matthias Weiner.
Persönlich haftende Gesellschafterin: Kühne & Nagel A.G., Rechtsform: 
Aktiengesellschaft nach luxemburgischem Recht, HR-Nr.: B 18745, 
Geschäftsführendes Verwaltungsratsmitglied: Karl Gernandt.
Geschäftsleitung Region Zentral- und Osteuropa: Dr. Hansjörg Rodi (Vors.), 
Thierry Held, Uwe Hött, Richard Huhn, Holger Ketz, Jan-Hendrik Köstergarten, 
Jan Kunze, Michael Nebel, Guillaume Sauzedde, Mustafa Sener.

Wir arbeiten ausschließlich auf Grundlage der Allgemeinen Deutschen 
Spediteurbedingungen 2017 (ADSp 2017). Hinweis: Die ADSp 2017 weichen in Ziffer 
23 hinsichtlich des Haftungshöchstbetrages für Güterschäden (§ 431 HGB) vom 
Gesetz ab, indem sie die Haftung bei multimodalen Transporten unter Einschluss 
einer Seebeförderung und bei unbekanntem Schadenort auf 2 SZR/kg und im Übrigen 
die Regelhaftung von 8,33 SZR/kg zusätzlich auf 1,25 Millionen Euro je 
Schadenfall sowie 2,5 Millionen Euro je Schadenereignis, mindestens aber 2 
SZR/kg, beschränken. Die ADSp sind auf unserer Webseite als Download 
erhältlich. Auf Anfrage senden wir Ihnen diese auch gerne zu.