Select to view content in your preferred language

FeatureTable issue on Joined Tables

215
0
07-07-2022 03:42 AM
cadgism
Occasional Contributor

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 !!!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");

 

 

0 Kudos
0 Replies