Right. We already made that change. So what is the problem you are
running into? data.group seems like it should work as a column name.
It doesn't work because BeanAdapter tries to find the getterMethod for
group in data (which is a Map) and it fails, since it is looking for
"getData", when it should be looking for "get" with an argument of
"data". It would require a couple of checks in the lines of if
I'm sorry, I meant it's looking for "getGroup" when it should be looking
for "get" -> "group".
-- Edvin