fs.add(new MaxLengthTextField(InputPanel.WICKET_ID, new PropertyModel<String>(position, "titel")));
}
posGridBuilder.newSplitPanel(GridSize.COL33);
{
// DropDownChoice type
final FieldsetPanel fs = posGridBuilder.newFieldset(getString("fibu.auftrag.position.art"));
final LabelValueChoiceRenderer<AuftragsPositionsArt> artChoiceRenderer = new LabelValueChoiceRenderer<AuftragsPositionsArt>(fs,
AuftragsPositionsArt.values());
final DropDownChoice<AuftragsPositionsArt> artChoice = new DropDownChoice<AuftragsPositionsArt>(fs.getDropDownChoiceId(),
new PropertyModel<AuftragsPositionsArt>(position, "art"), artChoiceRenderer.getValues(), artChoiceRenderer);
artChoice.setNullValid(false);