Re: wicket-bootstrap and another webjars components

2013-11-20 Thread Martin Grigorov
which version of wicket-webjars do you use ? there was a fix recently that may be related. Please provide a quickstart (github project) as Michael requested in the ticket and we will check it. On Thu, Nov 21, 2013 at 9:46 AM, Shengche Hsiao wrote: > Hello Martin > > Sorry, I typed wrong version,

Re: wicket-bootstrap and another webjars components

2013-11-20 Thread Shengche Hsiao
Hello Martin Sorry, I typed wrong version, actually i used the version you figured. If i implement the web application just using wicket 6.11.0 and webjars (wicket-webjars, codemirror, ace), it works fine. Once i added wicket-bootstrap 0.8.4 in it , every js reference broken but bootstrap rela

Re: wicket-bootstrap and another webjars components

2013-11-20 Thread Martin Grigorov
Hi, It looks like you use wrong version of webjars-ace. I found 07.31.2013 On Thu, Nov 21, 2013 at 6:55 AM, Shengche Hsiao wrote: > Hi all > > I successfully implemented two projects, one project used apache wicket > 6.11.0 with wicket-bootstrap 0.8.4 another used apache wicket 6.11.0 with > we

wicket-bootstrap and another webjars components

2013-11-20 Thread Shengche Hsiao
Hi all I successfully implemented two projects, one project used apache wicket 6.11.0 with wicket-bootstrap 0.8.4 another used apache wicket 6.11.0 with webjars component - ace 2017.07.31! But, when I create a new project with apache wicket 6.11.0 with wicket-bootstrap and ace, the ace js referen

Re: searching for a Rich text editor

2013-11-20 Thread Sebastien
Hi again, A new version of Kendo UI (kendoui.web.2013.3.1119) has been released yesterday or today I have deployed wicket-kendo-ui-6.12.2-SNAPSHOT. So: wicket-kendo-ui-6.12.2-SNAPSHOT is based on kendoui.web.2013.3.1119 wicket-kendo-ui-6.12.1-SNAPSHOT is based on kendoui.web.2013.2.716 wicket-ken

Re: Generated drop down list of countries in Wicket - any better way?

2013-11-20 Thread Marcin Zajączkowski
On 2013-11-20 09:28, Martin Grigorov wrote: > Hi, > > On Wed, Nov 20, 2013 at 1:30 AM, Marcin Zajączkowski wrote: > >> On 2013-11-19 08:44, Martin Grigorov wrote: >>> Hi, >>> >>> I think you can use IModel for the dropdown. This will be the >>> country code. >>> The transformation from id to nam

wicket-atmosphere

2013-11-20 Thread Pierre Goupil
Good evening, This may be off-topic but I'd like to congratulate Emond for his work on wicket-atmosphere. I've tried version 0.16-SNAPSHOT and it works like a charm: the migration to Atmosphere 2 is just painless. And regarding the performance boost promised by JF Arcand, there is no surprise: it

RE: DownloadLink and ProgressBar

2013-11-20 Thread Paul Bors
I would be wrong to show a 0% - 100% status bar. You might want to switch back to an indeterminate progress bar and do what Apple does during OS X install, show a label letting the user of your estimate such as "Approximately 5 minutes remaining" or "Less than a minute remaning". ~ Thank you, P

Re: Advice for upgrading from an old version of Wicket

2013-11-20 Thread Martin Grigorov
Hi, Most of the time this should not matter. Wicket doesn't use many dependencies. In this particular case it may matter because Wicket uses CGLib to generate proxies for classes (in contrast to interfaces) and Hibernate also uses bytecode generation (either via CGLib or Javassist) so a problem m

Re: Advice for upgrading from an old version of Wicket

2013-11-20 Thread Scott Carpenter
On another angle, suppose you're looking at also upgrading Hibernate and other supporting libraries/frameworks. Would you recommend starting with any particular component? It seems to me that starting with Wicket might be a good idea, since it would hopefully be backwards compatible with other lib

Re: Refreshing DataTable with AjaxButton [SOLVED]

2013-11-20 Thread Sandor Feher
Hi, Okay guys, shame on me. The problem has nothing to do with AjaxButton nor submit. DdcPDepsDataProvider had wrong size implementation and thus freshed or not randomly. s -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Refreshing-DataTable-with-AjaxButton-tp4662

Re: Problem running wicket in eclipse working with tomcat

2013-11-20 Thread Martin Grigorov
Sure. Just download wicket-util,jar, wicket-request.jar and wicket-core.jar manually and put them in the classpath (in WEB-INF/lib/ folder) On Wed, Nov 20, 2013 at 1:23 PM, Gerrit Wassink wrote: > What i meant is making a dynamic web project in Eclipse in which i can > work with Wicket, without

Re: Wicket Sessions and Akamai Caching

2013-11-20 Thread Scott Carpenter
Thanks, guys. I'll take a look! On Wed, Nov 20, 2013 at 2:13 AM, Martin Funk wrote: > Hi, > > the explanation in wicket guide might give further insight: > http://wicket.apache.org/guide/guide/chapter11.html#chapter11_9 > > mf > > > Am 20.11.2013 um 06:04 schrieb Jeremy Thomerson >: > > > Page

Re: Problem running wicket in eclipse working with tomcat

2013-11-20 Thread Gerrit Wassink
What i meant is making a dynamic web project in Eclipse in which i can work with Wicket, without using maven.But now i am looking also looking at m2e-wtp. Martin Grigorov , 20-11-2013 12:13: On Wed, Nov 20, 2013 at 12:57 PM, Gerrit Wassink wrote: > Hello Martin, > Thanks a lot for your qui

Re: Problem running wicket in eclipse working with tomcat

2013-11-20 Thread Martin Funk
Hi Gerrit, for now just try something like: org.apache.maven.plugins maven-eclipse-plugin 2.9 true

Re: Problem running wicket in eclipse working with tomcat

2013-11-20 Thread Martin Grigorov
On Wed, Nov 20, 2013 at 12:57 PM, Gerrit Wassink wrote: > Hello Martin, > Thanks a lot for your quick response! > Is there also a way to build a dynamic web project with Wicket > structure.This must be possible?I did many research on the web but not very > succesful.I have to build What do you

Re: Problem running wicket in eclipse working with tomcat

2013-11-20 Thread Gerrit Wassink
Hello Martin, Thanks a lot for your quick response! Is there also a way to build a dynamic web project with Wicket structure.This must be possible?I did many research on the web but not very succesful.I have to build a java webapplication with Wicket and Hibernate.The nice book "Wicket in Action

Re: Problem running wicket in eclipse working with tomcat

2013-11-20 Thread Martin Grigorov
Hi, I am user of Intellij IDEA now but before when I was an Eclipse user I have used embedded Jetty. See Start.java in Wicket quickstart application. If you want to use Tomcat as you described I think you need http://www.eclipse.org/m2e-wtp/. This project integrates Eclipse's Web Tools with Maven

Problem running wicket in eclipse working with tomcat

2013-11-20 Thread Gerrit Wassink
Hello members, My name is Gerrit Wassink and i am junior java developer.I am trying to setup a development environment in Eclipse Juno and want to use Wicket in it.Until now i did not succeed in getting a working structure which can work with Tomcat.I want to run and debug in Eclipse with the em

Re: Generated drop down list of countries in Wicket - any better way?

2013-11-20 Thread Martin Grigorov
Hi, On Wed, Nov 20, 2013 at 1:30 AM, Marcin Zajączkowski wrote: > On 2013-11-19 08:44, Martin Grigorov wrote: > > Hi, > > > > I think you can use IModel for the dropdown. This will be the > > country code. > > The transformation from id to name and back (if needed) can be moved to a > > custom I

Re: Wicket Sessions and Akamai Caching

2013-11-20 Thread Martin Funk
Hi, the explanation in wicket guide might give further insight: http://wicket.apache.org/guide/guide/chapter11.html#chapter11_9 mf Am 20.11.2013 um 06:04 schrieb Jeremy Thomerson : > Pages that are session-specific should not be cached in a way that allows > the cached response to be given to