If I start over and do:
circular (displays the list)
"edit" ->
circular?path=1 (displays show view)
"edit" ->
circular?path=2 (displays edit view)
"save" ->
circular?path=1 (displays the same show view as before and NOT updated)


why would it change?
You just set a backpage back as the response.
Is that page really changed somehow? And why should that be done, what is changed?

I also see you do this:

add(new Label("name", new PropertyModel( circularModel.getObject(this), "name")));

I find that very strange because circularModel is a detachable model if that is the case then
the object is reloaded. Then you shouldn't get that object on creation time of the label/property model
But always when needed.

add(new Label("name", new PropertyModel(circularModel, "name")));

So give just the model not the object inside the model.

johan

Reply via email to