How I get the internal html content of a dynamically updated div tag using Apache Wicket

2013-05-31 Thread Andun Sameera
Hi, In my html file I have a div tag like this, Type Here I am using a JavaScript library called bootstrap-wysiwyg to make this div tag a text are which we can type rich text. When the person types text, div tag's html content updates to represent the text content in html. I want to retr

Re: Mount a page class more than once.

2013-05-31 Thread josho
Martin- Thanks for your help. I had a look at #getCompatabilityScore and #checkPageClass on IRequestMapper. I extended the MountedMapper class, and added some debug messages to help me follow what was going on. After a while I experimented with the class and came up with the following solution:

Re: New Open Source application using Wicket : artifact-listener.org

2013-05-31 Thread Martijn Dashorst
Nice service. Sounds like a good idea! Martijn On Fri, May 31, 2013 at 10:13 AM, Guillaume Smet wrote: > Hi, > > We wanted to present you our first Open Source application powered by > Wicket. We use Wicket since 1.3 but it's the first application we can > release as an Open Source project. > >

Re: Page expired and concurrent links

2013-05-31 Thread Lucio Crusca
In data Friday 31 May 2013 17:34:31, Lucio Crusca ha scritto: > Hello *, > > I have a DataTable with a column of clickable checkboxes. Each time the > user clicks a checkbox the server does some stuff on the database. > > If the user clicks another checkbox before the server finished processing >

Page expired and concurrent links

2013-05-31 Thread Lucio Crusca
Hello *, I have a DataTable with a column of clickable checkboxes. Each time the user clicks a checkbox the server does some stuff on the database. If the user clicks another checkbox before the server finished processing the previous, he receives a Page Expired error. The behaviour is understa

Re: Wicket 6 ListItem add CSS

2013-05-31 Thread Tommy Sadiq Hinrichsen
Damn i feel stupid. Thank you very much. Med venlig hilsen / Best regards Tommy Sadiq Hinrichsen Selvstændig IT-udvikler HD-ØP Humlebækgade 16, 1.tv. 2200 København N Tlf: 26 24 14 36 Mangler du en billig anlægsgartner, så prøv http://www.sl-haveanlaeg.dk 2013/5/31 Sven Meier > Put the wi

Re: Wicket 6 ListItem add CSS

2013-05-31 Thread Sven Meier
Put the wicket id on the tag: Sven On 05/31/2013 12:09 PM, Tommy Sadiq Hinrichsen wrote: Hey I'm try

Wicket 6 ListItem add CSS

2013-05-31 Thread Tommy Sadiq Hinrichsen
Hey I'm trying to add a css class to a field inside a ListView. Here is the code add(new ListView("financeAccounts", new FinanceAccountListModelWithSum()) { @Override protected void populateItem(ListItem itemOuter) { FinanceAccount fa = itemOuter.getModel

Re: Browser Back Button Question

2013-05-31 Thread Hans Lesmeister 2
Hi, dhongyt wrote > I'm wondering if its because of hibernate? Its trying to get the query of > the page to display but the query has been closed? You have serialized an object which contains properties proxied by Hibernate. On deserializing, the proxy tries to resolve with the now closed embed

Re: Wicket free guide updated!

2013-05-31 Thread Hans Lesmeister 2
Hi Andrea, great job. Thank you very much! - -- Regards, Hans http://cantaa.de -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Wicket-free-guide-updated-tp4659158p4659179.html Sent from the Users forum mailing list archive at Nabble.com. -

New Open Source application using Wicket : artifact-listener.org

2013-05-31 Thread Guillaume Smet
Hi, We wanted to present you our first Open Source application powered by Wicket. We use Wicket since 1.3 but it's the first application we can release as an Open Source project. It's a Maven Central notification service built on Wicket 6.8.0. Reason why we thought it might be interesting to pos

Re: Mount a page class more than once.

2013-05-31 Thread Guillaume Smet
On Fri, May 31, 2013 at 9:37 AM, Martin Grigorov wrote: > #mountPage("/test1.html", MyPageClass1.class) Moreover, it's usually a good idea to have different classes so you can build your link to these pages easily. -- Guillaume -

Re: Mount a page class more than once.

2013-05-31 Thread Martin Grigorov
Hi, It won't work as you did it. Wicket's IRequestMapper uses #getCompatibilityScore() to decide which mapper to use to handle a request. If the scores for several mappers are the same then the order of their definition is used. Since "test3" is added last it has the highest priority. Later when W