Forum Discussion

AidonOlligschla's avatar
AidonOlligschla
Qrew Cadet
4 months ago

Mobile App RT Field Height Limiter

Good Afternoon,

I am developing an app intended for mobile use and desktop oversight.  I have a rich text field that I want to take the records from a Combined Text field and display each record on its own line for a clean view.  I'm finding that the RT field has a height limiter designed into the mobile app I can't seem to get around - it forces you to scroll through the limited dimensions of the field to see all the records, and I would like the field to auto-size based on the size of the records.  Currently, it will only display 3 at a time without scrolling.  Any thoughts on this?  For reference, [Item - Quantity - Unit] is a Combined Text summary field.  Formula below:

//For mobile form use displaying each stock item on its own line

SearchAndReplace(
    "<div style='border: 1px solid; background-color: yellow; padding: 10px;'>" &
    SearchAndReplace(
        ToText([Item - Quantity - Unit]),
        ";",
        "</div><br><div style='border: 1px solid; background-color: yellow; padding: 10px;'>"
    ) &
    "</div>",
    "<br></div><br><div>",
    "<br>"
)

No RepliesBe the first to reply