
Originally Posted by
karel1980
I have 2 views: one for finding Persons and one for viewing a Person's information. When the user double clicks on the list in the first view, the second view should open with that user's data.
I tried to stick to the richclient api by using showViewCommand.execute(Collections.singletonMap(" person",getSelectedPerson())), but I don't know how I can get a hold of the parameter in the view that is being opened.
I have no problem solving the problem by injecting the same personHolder object
into both views and using that as a means of communication, but I am wondering what the proper spring-richclient way to do this would be?