1234567891011121314151617181920 |
- using System.Collections.Generic;
- namespace FastReport.Web.Blazor.Components.Internal
- {
- public partial class ModalContainer
- {
- private string OkButtonErrorClass { get => WebReport.HasValidationError ? "fr-webreport-popup-content-btn-disabled" : ""; }
- readonly Dictionary<string, string> ExportParameters = new Dictionary<string, string>();
- private void CancelClick()
- {
- ExportParameters.Clear();
- WebReport.EnableModalDialog = false;
- }
- }
- }
|