Getting Started
Writing content
API Documentation
Customization
Recipes
API References Develop
@ng-doc/ui-kit / Class

NgDocClearControlComponent

Decorators:@Component @UntilDestroy
Generic types:T
Selectors:ng-doc-clear-control
Extends:DIControl<T, T>
Implements:AfterContentInit

No documentation has been provided.

Constructor

No documentation has been provided.

Presentation
constructor(
	
): NgDocClearControlComponent<T>;

Properties

NameTypeDescription
change
p
inherited from DIControlValueAccessor
(value: T | null) => void
changeDetectorRef
p r
inherited from DIControlValueAccessor
ChangeDetectorRef
config
p r
inherited from DIControl
DIControlConfig<TModel, TChildModel> | undefined
disabledValue
p r
inherited from DIControlValueAccessor
WritableSignal<boolean>
elementRef
p r
inherited from DIControlValueAccessor
ElementRef<HTMLElement>
incomingUpdate
p r
inherited from DIControlValueAccessor
((value: T | null) => void) | undefined
inputHost
p r
NgDocInputHost<T> | null
model
p r
inherited from DIControlValueAccessor
Signal<T | null>
ngControl
p r
inherited from DIControlValueAccessor
NgControl | null
renderer
p r
inherited from DIControlValueAccessor
Renderer2
touch
p
inherited from DIControl
() => void

Function that should be used to make control touched.

Accessors

get disabled

inherited from DIControlValueAccessor

Returns true if the control is disabled.

Presentation
get disabled(): boolean;
Type

boolean

set disabled

inherited from DIControlValueAccessor

No documentation has been provided.

Presentation
set disabled(isDisabled: boolean);
Type

boolean

get hasValue

inherited from DIControlValueAccessor

Returns true if the control is not empty.

Presentation
get hasValue(): boolean;
Type

boolean

get isVisible

No documentation has been provided.

Presentation
get isVisible(): boolean;
Type

boolean

Methods

clear()

No documentation has been provided.

Presentation
clear(): void;
Returns
void

ngAfterContentInit()

implements AfterContentInit

No documentation has been provided.

Presentation
ngAfterContentInit(): void;
Returns
void

ngOnInit()

inherited from DIControl

No documentation has been provided.

Presentation
ngOnInit(): void;
Returns
void
Overload #1

No documentation has been provided.

Presentation
ngOnInit(): void;
Returns
void

registerOnTouched()

inherited from DIControl

Method is called by the forms API.

Presentation
registerOnTouched(fn: () => void): void;
Parameters
NameTypeDescription
fn
inherited from registerOnTouched
() => void

callback function to register on touch

Returns
void
Overload #1

No documentation has been provided.

Presentation
registerOnTouched(fn: () => void): void;
Parameters
NameTypeDescription
fn
() => void
Returns
void

updateModel()

inherited from DIControl

Updates the model of the current control. This is the main method that should be used to update the model.

Presentation
updateModel(value: TModel | null): void;
Parameters
NameTypeDescription
value
TModel | null

new value.

Returns
void
Overload #1

Updates the model of the current control. This is the main method that should be used to update the model.

Presentation
updateModel(value: TModel | null): void;
Parameters
NameTypeDescription
value
TModel | null

new value.

Returns
void

writeValue()

inherited from DIControl

Method is called by the forms API to write to the view when programmatic changes from model to view are requested.

Presentation
writeValue(value: TModel | null): void;
Parameters
NameTypeDescription
value
inherited from writeValue
TModel | null
Returns
void
Overload #1

No documentation has been provided.

Presentation
writeValue(value: TModel | null): void;
Parameters
NameTypeDescription
value
TModel | null
Returns
void