if (element.isAction()) {
Form form = findParent(Form.class);
item.add( new SimpleAttributeModifier("class", "beanActionButtonCell") );
item.add( new Label("l", "") );
item.add( new BeanActionButton("c", element, form, bean) );
}
else {
item.add(showLabels ? element.getLabelComponent("l") : new Label("l", ""));
item.add( beanMetaData.getComponentRegistry().getComponent(bean, "c", element) );
}