Likely very simple question about input on wizards
I have a very simple wizard when I just need to gather a text response from the user. I followed an example but must have missed something. My attribute panel appears but not the textbox I had expected. Here is what I see:

Here is the builder code that I used:
public AttributePanelConfig buildAttributesComponentConfig(ComponentParams arg0)
throws WTException {
ComponentConfigFactory componentconfigfactory = getComponentConfigFactory();
AttributePanelConfig attributeconfig = (AttributePanelConfig) componentconfigfactory.newAttributePanelConfig();
attributeconfig.setComponentType(ComponentType.WIZARD_ATTRIBUTES_TABLE);
JcaGroupConfig group=(JcaGroupConfig) componentconfigfactory.newGroupConfig();
group.setId("justification");
group.setLabel("Enter Justification");
group.setIsGridLayout(true);
JcaAttributeConfig attribute = (JcaAttributeConfig)componentconfigfactory.newAttributeConfig();
attribute.setId("justification_value");
attribute.setRequired(true);
attribute.setLabel("Justification");
attribute.setComponentMode(ComponentMode.EDIT);
group.addComponent(attribute);
attributeconfig.addComponent(group);
return attributeconfig;
}
I thought that all I needed was to set the component mode to edit. I did this before with a table but in that case I used a data utility to make a editable text box. Is that what I need to do here? This should just be a simple textbox where the user can enter a short few sentences and I can pass that to a workflow.

