Rock.Web.UI.Controls.MetricCategoryPicker.SetValuesOnSelect C# (CSharp) Method

SetValuesOnSelect() protected method

Sets the values on select.
protected SetValuesOnSelect ( ) : void
return void
        protected override void SetValuesOnSelect()
        {
            var metricCategories = new MetricCategoryService( new RockContext() ).Queryable().Where( g => ItemIds.Contains( g.Id.ToString() ) );
            this.SetValues( metricCategories );
        }