private Component makeDelayedResponseView(final String wicketId,
final Element elt) {
ISIXmlSection section = getISIXmlSection();
IModel<XmlSection> currentSectionModel = new XmlSectionModel(section);
DelayedFeedbackSingleSelectView component = new DelayedFeedbackSingleSelectView(wicketId, getPrompt(elt, PromptType.SINGLE_SELECT), currentSectionModel);
component.add(new AttributeRemover("rgid", "title", "group", "type"));
component.setShowDateTime(false);
return component;
}