Exemple #1
0
 private void SELECTALL_InvokeAction(object sender, Blackbaud.AppFx.UIModeling.Core.InvokeActionEventArgs e)
 {
     foreach (var item in this.INTERACTIONS.Value)
     {
         item.SELECTED.Value = true;
     }
 }
Exemple #2
0
        private void _save_InvokeAction(object sender, Blackbaud.AppFx.UIModeling.Core.InvokeActionEventArgs e)
        {
            if (this._customModel.GetMatchStatus == DuplicateResolutionUIModel.MATCHSTATUSValues.MatchConfirmed)
            {
                this.DialogResult          = UIModelDialogResult.Completed;
                this._customModel.RecordId = erbBatchRowID.ToString();
                Guid id = this._customModel.SaveForm();
                this.DialogResultRecordId = id.ToString();

                SaveConstituentInfo();

                this.CONSTITUENTID.Value = id;
                LoadFromBatch(this.CONSTITUENTID.Value);
            }
            else if (this._customModel.GetMatchStatus == DuplicateResolutionUIModel.MATCHSTATUSValues.AddAsNew)
            {
                this.DialogResult = UIModelDialogResult.Ignored;
            }
            else if (this._customModel.GetMatchStatus == DuplicateResolutionUIModel.MATCHSTATUSValues.Unresolved)
            {
                this.DialogResult = UIModelDialogResult.Canceled;
            }
        }
Exemple #3
0
 private void _cancel_InvokeAction(object sender, Blackbaud.AppFx.UIModeling.Core.InvokeActionEventArgs e)
 {
     this.GOTONEXTRECORD.Value = false;
     this.DialogResult         = UIModelDialogResult.Canceled;
 }