Esri / data-assistant

ArcGIS Pro Add-in that assists in emergency management, local government and state government data aggregation workflows.
Apache License 2.0
22 stars 8 forks source link

Inconsistent Mouseover behavior #197

Closed JRosenfeldIntern closed 7 years ago

JRosenfeldIntern commented 7 years ago

When mapping data, the user can mouse over the grid to see the field types of the source and target field. The source field tootlip came up when mousing over anywhere in the box. The target tootlip, however, only showed up when the user mouses over the text itself.

I implemented a fix to this and will add it in the next pull request I do. Making this issue for a reference point.

The problem was the source DataGrid object in the source fields column is a collection of CombBox objects the users use to select source field (basically a drop down menu). The target fields, however, are TextBlock objects since they do not need to be rearranged or edited. I moved the ToolTip instead to the DataGrid as opposed to the TextBlock to correct the inconsistency. untitled