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

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 mgrigo...@apache.org 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

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

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.

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

Wicket 6 ListItem add CSS

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

Re: Wicket 6 ListItem add CSS

2013-05-31 Thread Sven Meier
Put the wicket id on the tr tag: tr wicket:id=financeAccounts td span wicket:id=accountNumber/span /td td span wicket:id=accountName/span /td td

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

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 the

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 guillaume.s...@gmail.com 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

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:

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, div wicket:id=editorAreaType Here/div 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