Re: Migration 1.4 - 7.0: org.apache.wicket.markup.html.link.PageLink

2015-08-24 Thread Jörg Schaible
Martin Grigorov wrote: Hi, The easy fix is: use BookmarkablePageLink. The class has been deprecated for 1.5 and removed for 6.x, I think. I will be easier for you if you upgrade from 1.4 to 1.5, then to 6.x and finally to 7.0.0. This way you will see the deprecation warnings and the new

Re: Add components inside the footer and header of a Modal

2015-08-24 Thread Marco Di Sabatino Di Diodoro
Hi Martin, Il 24/08/2015 12:16, Martin Grigorov ha scritto: Hi, 1. File an issue so that becomes more user friendly. I opened the issue on git 2. You can roll MyModal that extends from Modal and has MyModal.html with the extra components in header and footer. In MyModal#onInitialize() you

Wicket Felix

2015-08-24 Thread Jörg Schaible
Hi, I am migrating an old Wicket application running in Apache Felix and I wonder how I should register my initializer. According the migration docs I should move and rename the /wicket.properties file to META- INF/wicket/package.properties. However, in Felix I have an URL for this resource

Re: New Community page

2015-08-24 Thread Mihir Chhaya
Thanks, Andrea. Very helpful links for developers like me and, everybody else looking into Wicket site for any other reason. My humble observation though; there is 'CONTRIBUTE' link before 'COMMUNITY'. Would it be helpful in 'linking' those two or having reference of COMMUNITY on the other one?

Re: Wicket Felix

2015-08-24 Thread Christoph Läubrich
Just a hint: If you like to use Wicket inside OSGi, maybe https://ops4j1.jira.com/wiki/display/paxwicket/Pax+Wicket might be an alternative instead of doing all things manually. You might also find a hint about the initilizer there...

Re: Add components inside the footer and header of a Modal

2015-08-24 Thread Martin Grigorov
Hi, 1. File an issue so that becomes more user friendly. 2. You can roll MyModal that extends from Modal and has MyModal.html with the extra components in header and footer. In MyModal#onInitialize() you can use get(header).add(anExtraHeaderComponent) Martin Grigorov Wicket Training and

Add components inside the footer and header of a Modal

2015-08-24 Thread Marco Di Sabatino Di Diodoro
Hi all, I'm using wicket-bootstrap to implement a new console. In this moment, I'm implementing my Modal with de.agilecoders.wicket.core.markup.html.bootstrap.dialog.Modal component. I would like to add some components in the header or footer, but all fields are declared private and the

New Community page

2015-08-24 Thread Andrea Del Bene
Hi folks, I've uploaded a new page on our site called 'Community' where anyone can find the different community-driven resources for Wicket. https://wicket.apache.org/community/ I hope you will like it! Andrea

Re: wicket-bootstrap project

2015-08-24 Thread Martin Grigorov
Hi, On Mon, Aug 24, 2015 at 9:49 PM, michal vas michalvasa...@gmail.com wrote: I try to create a poc with a bootstrap style and I saw the wicket-bootstrap project. Why are the pros and cons using this wrapper ? Pros: - integration with third party bootstrap plugins, i.e. not part of

Re: Add components inside the footer and header of a Modal

2015-08-24 Thread Martin Grigorov
Hi, On Mon, Aug 24, 2015 at 4:05 PM, Marco Di Sabatino Di Diodoro marco.disabat...@tirasa.net wrote: Hi Martin, Il 24/08/2015 12:16, Martin Grigorov ha scritto: Hi, 1. File an issue so that becomes more user friendly. I opened the issue on git 2. You can roll MyModal that extends

Re: wicket-bootstrap project

2015-08-24 Thread michal vas
thank you for your detailed reply Michal 2015-08-24 22:00 GMT+02:00 Martin Grigorov mgrigo...@apache.org: Hi, On Mon, Aug 24, 2015 at 9:49 PM, michal vas michalvasa...@gmail.com wrote: I try to create a poc with a bootstrap style and I saw the wicket-bootstrap project. Why are the

Re: Wicket Felix

2015-08-24 Thread Martin Grigorov
Hi, On Mon, Aug 24, 2015 at 4:06 PM, Jörg Schaible joerg.schai...@swisspost.com wrote: Hi, I am migrating an old Wicket application running in Apache Felix and I wonder how I should register my initializer. According the migration docs I should move and rename the /wicket.properties file

wicket-bootstrap project

2015-08-24 Thread michal vas
I try to create a poc with a bootstrap style and I saw the wicket-bootstrap project. Why are the pros and cons using this wrapper ? Why not using bootstrap directly in the html pages only ? Using the wicket-bootstrap project wouldn't make the java code too much linked with the bootstrap framework