Constants.cs 611 B

123456789101112131415161718192021222324252627282930
  1. 
  2. namespace FastReport.Web
  3. {
  4. internal static class Constants
  5. {
  6. internal const string DIALOG = "_dialog";
  7. internal const string REALOAD = "_reload";
  8. internal const string SILENT_RELOAD = "_silentReload";
  9. }
  10. #if DIALOGS
  11. public partial class Dialog
  12. {
  13. internal const string ONCLICK = "onclick";
  14. internal const string ONCHANGE = "onchange";
  15. internal const string ONBLUR = "onblur";
  16. public const string DEFAULT_DATE_PICKER_FORMAT = "yyyy-MM-dd";
  17. public const string DEFAULT_TIME_PICKER_FORMAT = "HH:mm:ss";
  18. }
  19. #endif
  20. }