exportFormatChoiceRenderer.addValue(EXPORT_SVG, getString("gantt.export.svg"));
final DropDownChoice<String> exportFormatChoice = new DropDownChoice<String>(fs.getDropDownChoiceId(), new PropertyModel<String>(
this, "exportFormat"), exportFormatChoiceRenderer.getValues(), exportFormatChoiceRenderer);
exportFormatChoice.setNullValid(false);
fs.add(exportFormatChoice);
fs.add(new SingleButtonPanel(fs.newChildId(), new Button(SingleButtonPanel.WICKET_ID, new Model<String>("export")) {
@Override
public final void onSubmit()
{
parentPage.export(exportFormat);
}