|
@@ -39,7 +39,7 @@ interface DropdownModifiedInputFieldMetaData extends SimpleFieldMetaData {
|
|
|
}
|
|
|
|
|
|
interface TimePickerFieldMetaData extends SimpleFieldMetaData {
|
|
|
- // TODO: Tighhten up om types
|
|
|
+ // TODO: Tighhten up on types
|
|
|
value: Date;
|
|
|
format: string;
|
|
|
steps: StringMap;
|
|
@@ -107,7 +107,7 @@ abstract class OptionsField extends SimpleField {
|
|
|
}
|
|
|
|
|
|
// ---------------------------------------------------------------------------------------------------------------------
|
|
|
-// Concrete Implmemntations (suuplied for convenience)
|
|
|
+// Concrete Implementations - Native Form Components
|
|
|
|
|
|
class TextField extends SimpleField {
|
|
|
type = 'Text';
|
|
@@ -130,7 +130,7 @@ class RadioField extends OptionsField {
|
|
|
}
|
|
|
|
|
|
// ---------------------------------------------------------------------------------------------------------------------
|
|
|
-// Custom Form Component Models
|
|
|
+// Concrete Implementations - Custom Form Components
|
|
|
|
|
|
class CheckbuttonField extends SimpleField {
|
|
|
type = 'Checkbutton';
|
|
@@ -147,7 +147,7 @@ class DropdownModifiedInputField extends SimpleField {
|
|
|
}
|
|
|
|
|
|
// ---------------------------------------------------------------------------------------------------------------------
|
|
|
-// Custom FormGroup Component Models - render a series of FormControls
|
|
|
+// Concrete Implementations - Custom FormGroup Components (which render a group of FormControls)
|
|
|
|
|
|
class CheckbuttonGroup {
|
|
|
type = 'CheckbuttonGroup';
|
|
@@ -171,7 +171,7 @@ class CheckbuttonGroup {
|
|
|
}
|
|
|
|
|
|
// ---------------------------------------------------------------------------------------------------------------------
|
|
|
-// Kendo Form Component Models
|
|
|
+// Concrete Implementations - Kendo Form Components
|
|
|
|
|
|
class TimepickerField<TimePickerFieldMetaData> extends SimpleField {
|
|
|
type = 'Timepicker';
|