Re: Feedback/Error message.

2014-06-21 Thread K
Hi I am trying to build a web application in which i have to display list of items on search... this part has been done but i have to add a errror message in the same page if the search result comes out null... I am using DataView for displaying the results. using condition in java is simple

Error search message in same page

2014-06-21 Thread K
Hi I am trying to build a web application in which i have to display list of items on search... this part has been done but i have to add a errror message in the same page if the search result comes out null... I am using DataView for displaying the results. using condition in java is simple

[ANNOUNCE] Apache Wicket 6.16.0 released

2014-06-21 Thread Martijn Dashorst
The Apache Wicket PMC is proud to announce Apache Wicket 6.16.0! This release marks another minor release of Wicket 6. Starting with Wicket 6 we use semantic versioning for the future development of Wicket, and as such no API breaks are present in this release compared to 6.0.0. New and

[ANNOUNCE] Apache Wicket 7.0.0-M2 released

2014-06-21 Thread Martijn Dashorst
We have released the second in a series of milestone releases for Apache Wicket 7. We aim to finalise Wicket 7 over the coming months and request your help in testing the new major version. Caveats It is still a development version so expect API breaks to happen over the course of the coming

Wicketstuff snapshots

2014-06-21 Thread Maxim Solodovnik
Hello All, Maybe anyone knows is there any wicketstuff snapshot repository? If yes, what is the update period? Thanks in advance -- WBR Maxim aka solomax

Re: Wicketstuff snapshots

2014-06-21 Thread Martin Grigorov
Hi, https://oss.sonatype.org/content/repositories/snapshots/org/wicketstuff/ But http://ci.wicketstuff.org/ deploys the snapshots and it is not very reliable ... I will release 6.16.0 soon. Martin Grigorov Wicket Training and Consulting On Sat, Jun 21, 2014 at 8:55 PM, Maxim Solodovnik

Replacing items in a ListView

2014-06-21 Thread markus138138
I want to change the data of a listview on a Button Click. This is what I do currently: / final PageableListViewUsers listview = new PageableListViewUsers(rows, displayList, 10) { // protected void populateItem(final ListItemUsers item) { item.add(new

Re: Error search message in same page

2014-06-21 Thread Martin Grigorov
Hi, What did you try so far ? Martin Grigorov Wicket Training and Consulting On Sat, Jun 21, 2014 at 4:14 PM, K kondetiudayki...@gmail.com wrote: Hi I am trying to build a web application in which i have to display list of items on search... this part has been done but i have to add a

Re: Wicketstuff snapshots

2014-06-21 Thread Maxim Solodovnik
Thanks for the quick response Martin :) snapshots seems to be updated once in month and the half :( Will try to use releases :) On 22 June 2014 01:44, Martin Grigorov mgrigo...@apache.org wrote: Hi, https://oss.sonatype.org/content/repositories/snapshots/org/wicketstuff/ But

Re: Replacing items in a ListView

2014-06-21 Thread Martin Grigorov
Hi, There is a limitation in Wicket that requires you to repaint the whole repeater in Ajax requests. Actually you should repaint the parent of the repeater! You can repaint just some children components as you do but as you see there are issues. By default ListViews remove all their children

Re: Wicketstuff snapshots

2014-06-21 Thread Martin Grigorov
I can deploy snapshots myself but the time consuming operation is the upload and I prefer to spend it uploading the release :) Martin Grigorov Wicket Training and Consulting On Sat, Jun 21, 2014 at 9:59 PM, Maxim Solodovnik solomax...@gmail.com wrote: Thanks for the quick response Martin :)