I am trying to display Joined feature table data in a Feature Table as follows. The table is successfully created and displayed with column names, but no data in it. The header shows x number of features. The rows are created but no data is displayed. Can someone help, please!!Table Created !!!
var testlayer = new FeatureLayer({
url: urlBuildingPermitT,
definitionExpression:"PIN="+resulFeature.getAttribute("GSD.PIN")
});
var featureTable = new FeatureTable({
view: app.view,
layer: testlayer,
editingEnabled: false,
container: showTableData
});
app.view.ui.add(showTableData, "bottom-right");