DBObject keys = ((DocBuilderField) getBoundUnit(Item.grpKeys)).getDBObject();
DBObject initial = ((DocBuilderField) getBoundUnit(Item.grpInitialValue)).getDBObject();
DBObject query = ((DocBuilderField) getBoundUnit(Item.grpQuery)).getDBObject();
String reduce = getStringFieldValue(Item.grpReduce);
String finalize = getStringFieldValue(Item.grpFinalize);
final GroupCommand cmd = new GroupCommand(col, keys, query, initial, reduce, finalize);
// new DocView(null, "Group", col.getDB(), cmd.toDBObject()).addToTabbedDiv();
new DbJobCmd(col.getDB(), cmd.toDBObject(), null, button).addJob();
}