Index: Ringtoets/GrassCoverErosionOutwards/src/Ringtoets.GrassCoverErosionOutwards.Forms/Views/GrassCoverErosionOutwardsWaveHeightLocationsView.cs =================================================================== diff -u -r298af52e9de68d5beed50a88ec11be5bce1fc783 -r13d9407c89466e20fe912bb64d078358f8d03afc --- Ringtoets/GrassCoverErosionOutwards/src/Ringtoets.GrassCoverErosionOutwards.Forms/Views/GrassCoverErosionOutwardsWaveHeightLocationsView.cs (.../GrassCoverErosionOutwardsWaveHeightLocationsView.cs) (revision 298af52e9de68d5beed50a88ec11be5bce1fc783) +++ Ringtoets/GrassCoverErosionOutwards/src/Ringtoets.GrassCoverErosionOutwards.Forms/Views/GrassCoverErosionOutwardsWaveHeightLocationsView.cs (.../GrassCoverErosionOutwardsWaveHeightLocationsView.cs) (revision 13d9407c89466e20fe912bb64d078358f8d03afc) @@ -24,6 +24,7 @@ using Core.Common.Base; using Ringtoets.Common.Data.AssessmentSection; using Ringtoets.Common.Data.Hydraulics; +using Ringtoets.Common.Data.Hydraulics.IllustrationPoints; using Ringtoets.Common.Forms.Views; using Ringtoets.Common.Service; using Ringtoets.GrassCoverErosionOutwards.Data; @@ -160,6 +161,22 @@ return base.ValidateCalculatableObjects(); } + protected override GeneralResult GetGeneralIllustrationPointsResult() + { + DataGridViewRow currentRow = dataGridViewControl.CurrentRow; + if (currentRow == null) + { + return null; + } + + HydraulicBoundaryLocation location = ((HydraulicBoundaryLocationRow) currentRow.DataBoundItem).CalculatableObject; + + return location.WaveHeightCalculation.HasOutput + && location.WaveHeightCalculation.Output.HasIllustrationPoints + ? location.WaveHeightCalculation.Output.GeneralResult + : null; + } + private void UpdateHydraulicBoundaryLocations() { if (IsDataGridDataSourceChanged())