I just started using some code that was retired for awhile, so I'm not sure what all changed around it and the behavior I'm seeing is really strange.
I have a DataView on my page and wicket is complain that my model object doesn't have a getter for the id of the DataView. I.E. DataView is called "alternateWebsites" and wicket is complaining that the model object doesn't have getAleternateWebsites. I'm confused as to what change would make a DataView itself call set/get Model??? I'm also confused how the compound property model is even getting attached to the DataView. I was able to fix this with a setModel(new Model()) on the dataView. But that seems awefully hackish. Douglas