innerTable.getDescription().addElement(new ITextParagraph(getProperties().getLabel() + getMandatoryString()));
String val = getProperties().getValues();
if(getValue() != null) {
val = getValue();
}
innerTable.getContent().setCellEvent(new ITextInputText(val, isDisabled()));
innerTable.getContent().setFixedHeight(getProperties().getRows() * ITextInputText.FONTSIZE * ITextInputText.HEIGHTMULTIPLICATOR);
innerTable.addCells();
return innerTable;
}