Classes to be used with custom templates.
There are various places, where CSS classes from this interface may be applied.
dorfFields
array from DorfConfigService
Classes assigned to the concrete field component, under dorf-field
, e.g. to dorf-input
.
Classes for the error, below the field.
Classes assigned to the dorf-field
, which stores one of the fields at a time.
Classes for the HTML control.
Classes for a label.
Classes for wrapper, which groups all field elements (label, control, error).
Generated using TypeDoc
Represents CSS classes for typical things connected with DORF field. Should be used e.g. when including DORF module.
There are various places, where CSS classes from this interface may be applied.
dorfFields
array from DorfConfigService// DorfModule.forRoot({ css: { wrapper: "form-group", error: "error-message", label: "control-label", htmlField: "form-control" }, dorfFields: [{ tag: DorfField.CHECKBOX, css: { htmlField: "no-class", label: "checkbox-inline" } }, { tag: DorfField.RADIO, css: { htmlField: "radio-inline", label: "checkbox-inline" } }] })