this.effects.addAll(formEffects);
addStyleName("fbFormItemThinBorder");
EventHelper.addRightClickHandler(this, new RightClickHandler() {
@Override
public void onRightClick(RightClickEvent event) {
EffectsPopupPanel popupPanel = new EffectsPopupPanel(
FBFormItem.this, true);
if (getFormEffects() != null && !getFormEffects().isEmpty()) {
popupPanel.setPopupPosition(event.getX(), event.getY());
popupPanel.show();
}
}
});
EventHelper.addKeyboardCopyHandler(this, new ControlKeyHandler() {
@Override