How to create a Feature Table with more than one layer or feature layer with the ArcGIS API

0

I'm here because I'm having a problem with ArcGIS API (version 3.23) . In creating the attribute table or Feature Table , I can not add more than one layer or feature layer to the table, the code being used is the following:

self.myFeatureTable = new FeatureTable({
    "featureLayer": self.map._layers.Municipios_Faixa_Etaria_shapefile_3637_0,
    "outFields": ["*"],
    "map": map,
    "syncSelection": true,
    "showRelatedRecords": true,
    "showAttachments": true,
    "showGridMenu": true
}, 'featureTable');

self.myFeatureTable.startup();
Trying to select the problem I replace the feature layer with several things (ex: [], ["*"], _self.map. others) and none worked.

If anyone can help me thank you!

    
asked by anonymous 16.02.2018 / 20:05

0 answers