Seam DataModelSelection Null problem!
Hi
If you want to use DataModel with DataModelSelection together and getting null object, You should try to change scope to Session in your action class and every thing will be OK.
@Scope(Session)
public class ….
..@DataModel
private List<Object> objects..
@DataModelSelection
private Object object
..
..
bye
Advertisement