Re: Leaving page after closing modal results in browser pop up

2014-02-15 Thread PDiefent
Hi Ernesto, I didn't try because with former versions of Wicket the confirmation doesn't rise. The problem seams to exist since Wicket 6.13. -- View this message in context:

Re: Jetty, Wicket and getting live JavaScript changes?

2014-02-15 Thread Igor Vaynberg
Make sure wicket is running in development mode. It will scan resources for changes. A refresh in the browser will load the latest version. -igor On Feb 14, 2014 3:59 PM, tertioptus benpaige...@hotmail.com wrote: I use Jetty, maven and Eclipse. *What's the best way for me to have Jetty pick

Re: understanding looking for wicket:id

2014-02-15 Thread Paul Bors
Also take a look over the user guide's section on inheritance: http://wicket.apache.org/guide/guide/layout.html#layout_2 ~ Thank you, Paul Bors On Fri, Feb 14, 2014 at 3:42 PM, Richter, Marvin marvin.rich...@jestadigital.com wrote: That is definitely not a good way to do inheritance. This

Re: Jetty, Wicket and getting live JavaScript changes?

2014-02-15 Thread Kees van Dieren
Create a new application using the Quickstart guide: http://wicket.apache.org/start/quickstart.html Run the Start.java application right from Eclipse in debug mode. Hot code replacement from src/main/webapp/* should work now. Best regards / Met vriendelijke groet, Kees van Dieren Squins IT

Re: understanding looking for wicket:id

2014-02-15 Thread Farrukh SATTOROV
Thanks, now, i make myself a cup of green tea and i going to learn user guide in detail ) On Sat, Feb 15, 2014 at 7:20 PM, Paul Bors p...@bors.ws wrote: Also take a look over the user guide's section on inheritance: http://wicket.apache.org/guide/guide/layout.html#layout_2 ~ Thank you,

Re: Leaving page after closing modal results in browser pop up

2014-02-15 Thread Paul Bors
Have you tried setting this on your page? wicket:head scriptWicket.Window.unloadConfirmation = false;/script /wicket:head It should work, and if you want to apply it to all of the modal pop-ups in your app, consider using a header contribution that you would add to your parent

Re: Jetty, Wicket and getting live JavaScript changes?

2014-02-15 Thread tertioptus
Even if the resource files are in another project? Which is my particular issue. /For instance: Module 1 - jar ---some-wicket-component.java ---some-javascript-file.js Module 2 - war -depends on Module 1 Running Module 2 via jetty / I'm not sure how Wicket could pick up those changes.

Re: Error in Modal opening two diffrent instances of Wicket applicaiton.

2014-02-15 Thread Paul Borș
I think you need to use multiple wicket sessions. Have a great day, Paul Bors On Feb 13, 2014, at 10:45 AM, eaglei22 jchojnack...@gmail.com wrote: Okay, so I was able to try some more scenerios, and it looks like if I have one instance of the application open in one tab, and open a

Re: Leaving page after closing modal results in browser pop up

2014-02-15 Thread PDiefent
Hi Paul, yes, this works. But why didn't I need it in former Wicket releases? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Leaving-page-after-closing-modal-results-in-browser-pop-up-tp4664471p4664484.html Sent from the Users forum mailing list archive at

Re: Leaving page after closing modal results in browser pop up

2014-02-15 Thread Martin Grigorov
Hi, It is fixed soon after 6.13.0 has been released - https://issues.apache.org/jira/browse/WICKET-5469 Martin Grigorov Wicket Training and Consulting On Sat, Feb 15, 2014 at 10:44 PM, PDiefent pdief...@csc.com wrote: Hi Paul, yes, this works. But why didn't I need it in former Wicket

Re: factory method to create the DataGridView in DataTable

2014-02-15 Thread Martin Grigorov
Hi, On Fri, Feb 14, 2014 at 5:29 PM, Dirk Germonpré dirk.germon...@gmail.comwrote: Hello, I'm using the latest Wicket version (6). I would like to see a factory method to create the DataGridView (org.apache.wicket.extensions.markup.html.repeater.data.grid) in DataTable

Re: Jetty, Wicket and getting live JavaScript changes?

2014-02-15 Thread Igor Vaynberg
Yes. Because they have shared classpath. -igor On Feb 15, 2014 7:58 AM, tertioptus benpaige...@hotmail.com wrote: Even if the resource files are in another project? Which is my particular issue. /For instance: Module 1 - jar ---some-wicket-component.java ---some-javascript-file.js