Save only the text from Lookup Control

Hi,

I'm using the Title column as the display field of a lookup control.
I'd like to save just the text, rather than the entire JSON.

Is that doable?

image

image

image

Dear @AdamSmith ,
You can save text only if you copy it from the control with JavaScript:

var textValue = fd.control('Lookup').value.LookupValue;

Alternatively, if you're only interested in text, you might not even need the lookup control, we have an example of how you can get text value from any site inside of a dropdown field - Populate dropdown with data from another site collection — SharePoint forms