Currently, only fields with data are being displayed. How can I configure the Detail Screen to include empty fields as well?
To get that to happen, you would have to create a matching template column for each basic column. In the template column, you would join the column value and a space. That will give you a non empty value. Then change your fields to use the template columns instead.
3 Likes
Similar to what @Jeff_Hager suggested, but if you want to display something specific (like “Waiting for input” or “N/A”), you could create IF-THEN-ELSE columns for each of your values and have them display this specific value when empty, else display the actual inputted value.
By default, Glide does not show columns with empty values on the screen.
4 Likes
Thanks! I created IF-THEN-ELSE columns.