Hi Alexander, the user manual referenced above does not say how to make field description visible. It only says:
Read-only fields = Select fields to make read only.
I was able to display it by first unhiding the entire .dffs-readonly-hidden and only hiding the .ms-long portion of it using the Custom CSS below. Only problem is that there is a <br> line break element that leaves a white space. How can I remove that line break so that the description is displayed immediately below the input fields like it does for non-readonly fields?
.dffs-readonly-hidden {
display: block;
}
.dffs-readonly-hidden .ms-long{
display: none;
}