Re: Using the summernote rich text editor with Wicket

2018-12-03 Thread Francois Meillet
Hi Dylan,

Have a look at 
https://github.com/l0rdn1kk0n/wicket-bootstrap/blob/wicket-7.x/bootstrap-samples/src/main/java/de/agilecoders/wicket/samples/pages/SummernotePage.java
 

and 
https://github.com/l0rdn1kk0n/wicket-bootstrap/blob/wicket-7.x/bootstrap-samples/src/main/java/de/agilecoders/wicket/samples/pages/SummernotePage.html
 


François



> Le 3 déc. 2018 à 16:43, dylanbozeman  a écrit :
> 
> I am fairly new to Wicket and attempting to integrate summernote from
> bootstrap seen here:
> 
> http://coding.teliclab.info/wicket-7.x/summernote
> 
> I can't find anywhere on this page where an example java code and html
> markup are shown. I'm pretty much in the dark as far as configuring it. Does
> anyone know where I can find code that demonstrates how to add the
> component?
> 
> Here's what I've got so far but it's not displaying properly:
>final SummernoteEditor summernoteEditor = new
> SummernoteEditor("summernoteEditor", new PropertyModel(this,
> "articleContent"), summernoteConfig);form.add(summernoteEditor);
> 
> --
> Sent from: 
> http://apache-wicket.1842946.n4.nabble.com/Users-forum-f1842947.html
> 
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
> 



Re: Using the summernote rich text editor with Wicket

2018-12-03 Thread dylanbozeman
Thank you. I'll look into these.

--
Sent from: http://apache-wicket.1842946.n4.nabble.com/Users-forum-f1842947.html

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Using the summernote rich text editor with Wicket

2018-12-03 Thread dylanbozeman
Any idea why when I implement the code you provided there I don't get the
summernote Editor displaying?

Page loads find, TextArea component is showing up, but the summernote Editor
just isn't there...

--
Sent from: http://apache-wicket.1842946.n4.nabble.com/Users-forum-f1842947.html

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Using the summernote rich text editor with Wicket

2018-12-03 Thread Tobias Soloschenko
Hello,

for me it is showing up:

https://wb7.teliclab.info/summernote

You have to use Wicket bootstrap and summernote.

kind regards

Tobias

> Am 03.12.2018 um 19:28 schrieb dylanbozeman :
> 
> Any idea why when I implement the code you provided there I don't get the
> summernote Editor displaying?
> 
> Page loads find, TextArea component is showing up, but the summernote Editor
> just isn't there...
> 
> --
> Sent from: 
> http://apache-wicket.1842946.n4.nabble.com/Users-forum-f1842947.html
> 
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
> 


Re: Using the summernote rich text editor with Wicket

2018-12-03 Thread dylanbozeman
I meant on my own site. I've got summernote and Wicket bootstrap but for some
reason the WYSIWYG isn't displaying. Just the TextArea is showing up. 

--
Sent from: http://apache-wicket.1842946.n4.nabble.com/Users-forum-f1842947.html

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Using the summernote rich text editor with Wicket

2018-12-03 Thread Tobias Soloschenko
Please have a look at the javascript console of the browser (if there are any 
errors) and if the CSS files / JS files are present on your site. There were no 
recent changes and the files are within the code base of wicket bootstrap as I 
remember correctly.

kind regards

Tobias

> Am 03.12.2018 um 23:01 schrieb dylanbozeman :
> 
> I meant on my own site. I've got summernote and Wicket bootstrap but for some
> reason the WYSIWYG isn't displaying. Just the TextArea is showing up. 
> 
> --
> Sent from: 
> http://apache-wicket.1842946.n4.nabble.com/Users-forum-f1842947.html
> 
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
> 

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Using the summernote rich text editor with Wicket

2018-12-05 Thread dylanbozeman
I didn't find any errors in the Javascript console of the browser.

Which CSS files / JS files are required? All that I have done is replicate
the java class/html-markup that you linked me to. I don't see any CSS/JS
files associated. Could you link me to those as well perhaps?

Thank you for your help..

--
Sent from: http://apache-wicket.1842946.n4.nabble.com/Users-forum-f1842947.html

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Using the summernote rich text editor with Wicket

2018-12-05 Thread Tobias Soloschenko
You also need the Maven-Dependencies of wicket-bootstrap - could you check the 
Network traffic to see if there are any 404 for CSS / JS

kind regards

Tobias

> Am 05.12.2018 um 21:50 schrieb dylanbozeman :
> 
> I didn't find any errors in the Javascript console of the browser.
> 
> Which CSS files / JS files are required? All that I have done is replicate
> the java class/html-markup that you linked me to. I don't see any CSS/JS
> files associated. Could you link me to those as well perhaps?
> 
> Thank you for your help..
> 
> --
> Sent from: 
> http://apache-wicket.1842946.n4.nabble.com/Users-forum-f1842947.html
> 
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
> 

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Using the summernote rich text editor with Wicket

2018-12-14 Thread dylanbozeman
Anyone have an idea what could be wrong? I'm not getting any Pom dependency
issues, all my bootstrap dependencies are there and my code is identical to
the java class and html seen at
https://github.com/l0rdn1kk0n/wicket-bootstrap/tree/wicket-7.x/bootstrap-samples/src/main/java/de/agilecoders/wicket/samples/pages
for the summernote editor. However, it's just not displaying as seen below.
No Ajax error either.

 

--
Sent from: http://apache-wicket.1842946.n4.nabble.com/Users-forum-f1842947.html

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Using the summernote rich text editor with Wicket

2018-12-14 Thread Martin Grigorov
Please create a mini application demonstrating the problem and we will take
a look.
Share it at GitHub or similar.

On Fri, Dec 14, 2018, 23:48 dylanbozeman  Anyone have an idea what could be wrong? I'm not getting any Pom dependency
> issues, all my bootstrap dependencies are there and my code is identical to
> the java class and html seen at
>
> https://github.com/l0rdn1kk0n/wicket-bootstrap/tree/wicket-7.x/bootstrap-samples/src/main/java/de/agilecoders/wicket/samples/pages
> for the summernote editor. However, it's just not displaying as seen below.
> No Ajax error either.
>
> 
>
> --
> Sent from:
> http://apache-wicket.1842946.n4.nabble.com/Users-forum-f1842947.html
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>