@@ -26,6 +26,9 @@ public static string GetIcon(this Dictionary<string, object> attributes, Culture
2626 public static bool ? GetHidden ( this Dictionary < string , object > attributes , CultureInfo culture ) =>
2727 attributes . GetBooleanAttributeValue ( InputAttributes . Hidden , culture . Name ) ;
2828
29+ public static bool ? GetHiddenDates ( this Dictionary < string , object > attributes , CultureInfo culture ) =>
30+ attributes . GetBooleanAttributeValue ( InputAttributes . HiddenDates , culture . Name ) ;
31+
2932 public static bool ? GetShowDescription ( this Dictionary < string , object > attributes , CultureInfo culture ) =>
3033 attributes . GetBooleanAttributeValue ( InputAttributes . ShowDescription , culture . Name ) ;
3134
@@ -34,7 +37,10 @@ public static string GetIcon(this Dictionary<string, object> attributes, Culture
3437 #region Case Field Start
3538
3639 public static bool ? GetStartReadOnly ( this Dictionary < string , object > attributes , CultureInfo culture ) =>
37- attributes . GetBooleanAttributeValue ( InputAttributes . StartPickerOpen , culture . Name ) ;
40+ attributes . GetBooleanAttributeValue ( InputAttributes . StartReadOnly , culture . Name ) ;
41+
42+ public static bool ? GetStartHidden ( this Dictionary < string , object > attributes , CultureInfo culture ) =>
43+ attributes . GetBooleanAttributeValue ( InputAttributes . StartHidden , culture . Name ) ;
3844
3945 public static DatePickerType ? GetStartPickerOpen ( this Dictionary < string , object > attributes , CultureInfo culture ) =>
4046 attributes . GetEnumAttributeValue < DatePickerType > ( InputAttributes . StartPickerOpen , culture . Name ) ;
@@ -69,7 +75,10 @@ public static string GetStartRequired(this Dictionary<string, object> attributes
6975 #region Case Field End
7076
7177 public static bool ? GetEndReadOnly ( this Dictionary < string , object > attributes , CultureInfo culture ) =>
72- attributes . GetBooleanAttributeValue ( InputAttributes . EndPickerOpen , culture . Name ) ;
78+ attributes . GetBooleanAttributeValue ( InputAttributes . EndReadOnly , culture . Name ) ;
79+
80+ public static bool ? GetEndHidden ( this Dictionary < string , object > attributes , CultureInfo culture ) =>
81+ attributes . GetBooleanAttributeValue ( InputAttributes . EndHidden , culture . Name ) ;
7382
7483 public static DatePickerType ? GetEndPickerOpen ( this Dictionary < string , object > attributes , CultureInfo culture ) =>
7584 attributes . GetEnumAttributeValue < DatePickerType > ( InputAttributes . EndPickerOpen , culture . Name ) ;
0 commit comments