I have table data available from Azure Data Explorer that I need to show as the Items for a canvas app drop-down control.
I am testing by having a single column in my Data Explorer table and my query returns 2 rows.
I am using OnStart of the app to make the Data Explorer call within Collect(myCollection, myCallToKusto). In the Collections preview, I see little icons that look like tables, but I do not see strings there.
In my drop-down I am using Items = myCollection.value. None of the strings from Kusto are showing in the drop-down. However, I have a OnChange event calling Collect(myCollection2, myDropDown.SelectedText).
When I view the Collections sample data, I see the same little table icons. This leads me to believe data is coming back from Kusto and being passed into my collections as I expect, but the tabular format must not be correct.
Any ideas?