Re: Refreshingview vs ListView

2016-07-28 Thread Entropy
Thanks for the suggestion.  I think so.  

public boolean equals(Object other) {
if ((this == other))
return true;
if ((other == null))
return false;
if (!(other instanceof Expense))
return false;
Expense castOther = (Expense) other;

if (this.getId() == null)
return false;
if (castOther.getId() == null)
return false;

return castOther.getId().equals(this.getId());
}

public int hashCode() {
int result = 17;

if (getId() != null)
result = result * getId().hashCode();

return result;
}

--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Refreshingview-vs-ListView-tp4675224p4675236.html
Sent from the Users forum mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Refreshingview vs ListView

2016-07-28 Thread Jonas
Have you checked that equals/hashCode of your items are implemented
properly?
In our application, broken equals/hashCode was the most frequent reason for
item reuse not working properly.

Cheers,
Jonas

On Wed, Jul 27, 2016 at 6:02 PM, Entropy  wrote:

> I replaced the RefreshingView with a PropertyListView again, and it fixed
> the
> validation message issue.  All other changes were still there.
> Unfortunately, it also breaks my new feature as the ListView won't update
> on
> Save.
>
> --
> View this message in context:
> http://apache-wicket.1842946.n4.nabble.com/Refreshingview-vs-ListView-tp4675224p4675226.html
> Sent from the Users forum mailing list archive at Nabble.com.
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>


[ANNOUNCE] WicketStuff 6.24.0 is released

2016-07-28 Thread Martin Grigorov
Hi,

WicketStuff core 6.24.0 based on Apache Wicket 6.24.0 is released and
available at Maven Central.

The changelog since 6.23.0 is:

JoachimRohde (4):
  [GMap3] Fix for #499 (clustering was not working)
  [GMap3] Removed sensor-parameter from URL and deprecated all methods
which took "sensor" as a parameter
  [GMap3] Included clustering script (#499)
  [GMap3] Usage of API key is now supported and encouraged

René Dieckmann (3):
  Separate monitoring data from components. Fixes #518
  UX: Statistics presentation.
  UX: Date statistics presentation.

kkaravitis (3):
  resolves issues #482, #487, #488, #495, #502
  resolves issue #495
  set module-id value to liferay/wicketstuff-portlet-examples/6.22.0/war

philipreimer (3):
  replace ofchart dependency because old dependency's repository
http://jofc2.googlecode.com/svn/repository/snapshots/ is not available
anymore
  downport tinymce4 from wicketstuff for wicket 7
  add missing IInitializer files so that MonitoringRepository gets
registered with Application

2janci2 (1):
  Update of markerclusterer.js location

Andreas Häber (1):
  Google Charts: Text and Value marker support

Joachim Rohde (1):
  [GMap3] Fixed #530 (used wrong parameter name for the key)

Konstantinos Karavitis (1):
  Merge pull request #508 from kkaravitis/wicket-6.x

Martin Tzvetanov Grigorov (1):
  Release 6.24.0

Maxim Solodovnik (1):
  [urlfragment] Java warnings were fixed

miguelpayet (1):
  Fix the delete action when there are two editable grids on one page.


The WicketStuff team!


[ANNOUNCE] WicketStuff 7.4.0 Released

2016-07-28 Thread Martin Grigorov
WicketStuff core 7.4.0 based on Apache Wicket 7.4.0 is released and available
at Maven Central.

The changelog since 7.3.0 is:

kkaravitis (15):
  fix for reopened issue #482
  #495 Make the wicketstuff portlet examples applicable for both
liferay and websphere portal
  how to deploy wicketstuff portlets on websphere portal
  pull needed
  Merge branch 'master' of https://github.com/kkaravitis/core
  minor fixes for #496, #494
  #482
  #502
  - remove unused imports
  Merge branch 'master' of https://github.com/wicketstuff/core
  module-id set to liferay/wicketstuff-portlet-examples/6.22.0/war
  #522
  Merge branch 'master' of https://github.com/wicketstuff/core
  update version of examples
  #523

Andrea Del Bene (6):
  Version bumped to the next SNAPSHOT (7.4.0-SNAPSHOT)
  Retrigger CI
  Moved jof2 dependecy to its active fork
  Issue #492
  Fix for serializers tests
  Attempt to solve what it might be a synchronization problem

Maxim Solodovnik (6):
  xstream.version is updated
  Fixes #498: i18n should be fully supported
  [urlfragment] Java warnings were fixed
  [dashboard] Java warnings were fixed
  [dashboard] Fixes #528: wicket.properties is replaced with
META-INF/services/org.apache.wicket.IInitializer
  versions are updated

JoachimRohde (4):
  [GMap3] Fix for #499 (clustering was not working)
  [GMap3] Removed sensor-parameter from URL and deprecated all methods
which took "sensor" as a parameter
  [GMap3] Included clustering script (#499)
  [GMap3] Usage of API key is now supported and encouraged

Martin Tzvetanov Grigorov (3):
  [dashboard] Fix build in wicket-7.x
  [jqplot] Fix build in wicket-7.x
  Release 7.4.0

René Dieckmann (3):
  Separate monitoring data from components. Fixes #518
  UX: Statistics presentation.
  UX: Date statistics presentation.

Carl-Eric Menzel (2):
  upgrade to wicket15-tree 7.1.0 to fix issue #513, regression with
opening tree nodes via ajax
  prevent default action when clicking sort header

2janci2 (1):
  Update of markerclusterer.js location

Andreas Häber (1):
  Google Charts: Text and Value marker support

Joachim Rohde (1):
  [GMap3] Fixed #530 (used wrong parameter name for the key)

jrohde (1):
  Merge origin/master

miguelpayet (1):
  Fix the delete action when there are two editable grids on one page.


The WicketStuff team