Hello, I’m trying to get information from a lookup control in a Display form once the form and field are rendered. After troubleshooting, it looks like the field never reports itself as ready; even a simple console.log doesn’t work. Here’s the code I’m using:
fd.spRendered(() => { // logs "Form is rendered" every time console.log("Form is rendered"); // logs as null as expected since the field isn't ready console.log(fd.control("LookupField").value); fd.control("LookupField").ready(() => { // never logs an output console.log("Control is rendered"); }); });
When I make fd available in the console and query the control after the form is fully loaded, the _isReady value stays set to false.

Am I missing something?