JS API 4.11 view.popup.open() not displaying feature attributes, only text literal

912
3
Jump to solution
04-30-2019 06:07 AM
JustinKirtz
New Contributor II

I've created a statistics query tool that uses a Tabulator table to display the selected results. When the user clicks on a row it will zoom to the appropriate feature. See screenshot:

I'd also like to open the selected feature's popup when they click on it, and I've gotten it to work, however it will only display the text literal instead of the feature attributes. See screenshot:

Here is my code, rowClick is from Tabulator.

rowClick: function(e, row) {
            // WHEN ROW IS CLICKED, ZOOM TO SELECTED FEATURE
            app.activeView.whenLayerView(app.layerToBeQueried).then(function(layerView) {

                var query = app.layerToBeQueried.createQuery();
                query.where = "StationShortName = " + "'" + row._row.data.StationShortName + "'";
                query.outSpatialReference = app.activeView.spatialReference;
                query.returnGeometry = true;

                app.layerToBeQueried.queryFeatures(query).then(function(results) {
                    var selectedFeature = results.features[0];

                    app.activeView.goTo({
                        target: selectedFeature.geometry,
                        zoom: 20
                    });

                    app.activeView.popup.open({
                        location: selectedFeature.geometry,
                        content: selectedFeature.sourceLayer.popupTemplate.content[0].text
                    })
                });
            });
        },

I've tried creating a PopupTemplate + TextContent and it did the same thing. Can someone please tell me what I'm doing wrong?

Thanks,

-Justin

0 Kudos
1 Solution

Accepted Solutions
RobertScheitlin__GISP
MVP Emeritus

Justin,

   The proper way to show a feature popup is to use code like this:

rowClick: function(e, row) {
            // WHEN ROW IS CLICKED, ZOOM TO SELECTED FEATURE
            app.activeView.whenLayerView(app.layerToBeQueried).then(function(layerView) {

                var query = app.layerToBeQueried.createQuery();
                query.where = "StationShortName = " + "'" + row._row.data.StationShortName + "'";
                query.outSpatialReference = app.activeView.spatialReference;
                query.returnGeometry = true;

                app.layerToBeQueried.queryFeatures(query).then(function(results) {
                    var selectedFeature = results.features[0];

                    app.activeView.goTo({
                        target: selectedFeature.geometry,
                        zoom: 20
                    });

                    app.activeView.popup.open({
                        location: selectedFeature.geometry,
                        features: results.features
                    })
                });
            });
        },

View solution in original post

3 Replies
RobertScheitlin__GISP
MVP Emeritus

Justin,

   The proper way to show a feature popup is to use code like this:

rowClick: function(e, row) {
            // WHEN ROW IS CLICKED, ZOOM TO SELECTED FEATURE
            app.activeView.whenLayerView(app.layerToBeQueried).then(function(layerView) {

                var query = app.layerToBeQueried.createQuery();
                query.where = "StationShortName = " + "'" + row._row.data.StationShortName + "'";
                query.outSpatialReference = app.activeView.spatialReference;
                query.returnGeometry = true;

                app.layerToBeQueried.queryFeatures(query).then(function(results) {
                    var selectedFeature = results.features[0];

                    app.activeView.goTo({
                        target: selectedFeature.geometry,
                        zoom: 20
                    });

                    app.activeView.popup.open({
                        location: selectedFeature.geometry,
                        features: results.features
                    })
                });
            });
        },
JustinKirtz
New Contributor II

Robert,

As always you are the man!

Thanks so much!

-Justin

0 Kudos
RobertScheitlin__GISP
MVP Emeritus

Don't forget to mark this question as answered by clicking on the "Mark Correct" link on the reply that answered your question.

0 Kudos