only show value and not the id on form field lookup

hi there,

when you use a lookup in a form field that is labeled (the value is depending on another field in the record and is changed when blurred) the id of that field (the one that’s linked) is always shown. is there a way to only show the value?

on a SINGLE form I use CSS to do so

.css_status_id_obj {display: none;}

I’m not sure if this will work on a MULTI RECORD form. If not you can try to SET it back to TEXT (so the id does not show) and use CSS pointer-events to disable the field.

#field_id{pointer-events: none;}