Re: CheckGroup in a DataView with another CheckGroup

2008-04-14 Thread Dreamltf
#AllowModel.class import java.io.Serializable; import java.util.ArrayList; public class AllowModel implements Serializable { private static final long serialVersionUID = 1L; private Long id = null; private ArrayList list = new ArrayList(); public AllowModel() {

Re: CheckGroup in a DataView with another CheckGroup

2008-04-14 Thread Dreamltf
I found the better way #AllowModel.class import java.io.Serializable; import java.util.ArrayList; public class AllowModel implements Serializable { private static final long serialVersionUID = 1L; private Long id = null; private ArrayList list = new ArrayList();

Re: CheckGroup in a DataView with another CheckGroup

2008-04-14 Thread Dreamltf
I found the better way #AllowModel.class import java.io.Serializable; import java.util.ArrayList; public class AllowModel implements Serializable { private static final long serialVersionUID = 1L; private Long id = null; private ArrayList list = new ArrayList();

Re: CheckGroup in a DataView with another CheckGroup

2008-03-28 Thread Dreamltf
Thanks for your reply. I upgraded to version 1.3.2, but still no help. So, I changed a way to get the value private HashMap allowmap = new HashMap(); #allowgroup CheckGroup allowgroup = new CheckGroup("allowgroup", new ArrayList()); #othergroup allowmap.put(arg0.getIndex(), new ArrayList()); C

Re: CheckGroup in a DataView with another CheckGroup

2008-03-27 Thread Igor Vaynberg
we have just released 1.2.7 which is the last 1.2.x release we will make. there is a patch on how to make this work in jira assigned to 1.3, you can take that and roll your own checkgroup/check variants. -igor On Thu, Mar 27, 2008 at 1:41 AM, Dreamltf <[EMAIL PROTECTED]> wrote: > > Hi all, > >