Hi, I found a issue in the info summary Widget using WFS layer.
When using showAllFeatures in config, do not filter features by map extent :
_queryWFS: function (graphics) {
//return graphics.filter(g => this.map.extent.intersects(g.geometry));
return graphics.filter(lang.hitch(this, function (g) {
if (this.config.showAllFeatures) {
return true;
}
return this.map.extent.intersects(g.geometry);
}));
},