Hi there, I’m currently working on an app that is supposed to dynamically pull the label for a text field from the Data Fabric. The problem is, when I try to do that, the label always remains empty. I’ve managed to circumvent the problem by adding a table to the page, using the specific data as a source for that table, hiding the table, and then referencing it from the label. That way, it works, but I’m certain it should also work directly, shouldn’t it?
For reference, here’s how the data is collected for the table:
Fetch(of WitsWagersQuestions)(Nothing, Nothing, Nothing, Nothing, New ExpansionFieldOption(){addExpansionFieldOption("CreatedBy", New String(){"Id","Name"}), addExpansionFieldOption("UpdatedBy", New String(){"Id","Name"})})
And then I get it to the label this way:
EnterAnswerPage.Table.DataSource.data(0).Question
But this is what I tried and which leaves the label empty:
Fetch(of WitsWagersQuestions)(Nothing, Nothing, Nothing, Nothing, New ExpansionFieldOption(){addExpansionFieldOption("CreatedBy", New String(){"Id","Name"}), addExpansionFieldOption("UpdatedBy", New String(){"Id","Name"})}).data(0).Question