#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() {
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();
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();
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
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,
>
>