Rock.Web.UI.Controls.GridFilter.lbFilter_Click C# (CSharp) Method

lbFilter_Click() protected method

Handles the Click event of the lbFilter control.
protected lbFilter_Click ( object sender, EventArgs e ) : void
sender object The source of the event.
e System.EventArgs The instance containing the event data.
return void
        protected void lbFilter_Click( object sender, EventArgs e )
        {
            _hfVisible.Value = "false";

            if ( ApplyFilterClick != null )
            {
                ApplyFilterClick( sender, e );
            }
        }