Hi there,
In Webtop 6.5, I want to change the display the repeating attributes to use multiple line with 1 value for each line (in the properties component and everything else that display the properties, like new, import, etc..)
I tried to modify the number of lines creating my own class extending the DocbaseAttributeValueTag class and configured for my attribute in the docbaseobjectconfiguration... file
I've overridden the renderRepeatingAttribute method with:
protected void renderRepeatingAttribute(String strValue, boolean bReadonly, JspWriter out)
{
String strLines = "5";
DocbaseAttributeValue value = (DocbaseAttributeValue) getControl();
value.setLines(strLines);
super.renderRepeatingAttribute(strValue, bReadonly, out);
}
To no avail. No errors but still all values come on 1 line. If I do the same but override renderSingleAttribue method for any single attribute (i.e. Title) then it is displayed on multiple lines
Any idea?