lucasas
17 Jun 2008, 8:47 AM
When I'm using a dynamic table with a RCPProxy, and I try to use a attribute from a object inside another object sample:
public GroupDTO getGroup() {
return get("group");
}
that is inside UserDTO
public String getName() {
return get("name");
}
that is inside GroupDTO
In the TableCloumn ID I'm using "group.name" to fill the column.
The problem is when I'm in the GWTHosted mode everything works just fine, but in Firefox or Internet Explore the table don't show any value.
public GroupDTO getGroup() {
return get("group");
}
that is inside UserDTO
public String getName() {
return get("name");
}
that is inside GroupDTO
In the TableCloumn ID I'm using "group.name" to fill the column.
The problem is when I'm in the GWTHosted mode everything works just fine, but in Firefox or Internet Explore the table don't show any value.