I have a data table, pre-populated with data, and I want designers to be able to choose a row from it via the Details panel for some other object (let’s call it Thing).
If I put the FDataTableRow in Thing directly, it just lets us edit a whole row of data, which is not what we want.
If I use a FDataTableRowHandle in Thing instead, this does let us choose a row via a drop-down box; but it also requires the user to choose a Data Table too, which is undesirable.
I want to hard-code the choice of data table so that designers don’t have to manually select it and can’t accidentally choose the wrong one, leaving just the list of rows as a drop-down box for them to choose from. Is this possible?