We have a 4 column DynamicForm that we need to add text in the 2nd column. We assumed a BlurbItem with a colspan of 1 would do the trick but this causes our Form to go from 1 row to 3 rows. 1 row for the Item in column 1, 1 row for the BlurbItem, 1 row for Items in columns 3 and 4.
We worked around the issue by using a StaticTextItem with an empty string as the title and a default value of the text we want to display. Though this gets the job done it seems wrong and adds unnecessary overhead.
The Javadoc for BlurbItem seems to indicate that setColSpan(int) is a feasible option. Why does it not work? Is there something else that we need to set?
Thanks,
Pat
We worked around the issue by using a StaticTextItem with an empty string as the title and a default value of the text we want to display. Though this gets the job done it seems wrong and adds unnecessary overhead.
The Javadoc for BlurbItem seems to indicate that setColSpan(int) is a feasible option. Why does it not work? Is there something else that we need to set?
Thanks,
Pat
Comment