Skip to content

Class: FormCellTargetProxy

FormCellTargetProxy is a developer-facing class that provides access to a formcell's target. It is passed to rules to provide access to a formcell's target for application-specific customizations.

Hierarchy

Implements

Summary

Constructors

Properties

Class Properties

Currently none in this class.

Inherited Properties

Accessors

Class Accessors

Currently none in this class.

Inherited Accessors

Methods

Class Methods

Inherited Methods

Constructors

Constructor

+ new FormCellTargetProxy(specifier: any): FormCellTargetProxy

Overrides TargetProxy.constructor

Parameters:

Name Type
specifier any

Returns: FormCellTargetProxy

Methods

getDisplayValue

getDisplayValue(): string

Implementation of IFormCellTargetProxy.getDisplayValue

Returns: string

return the display value


getReturnValue

getReturnValue(): string

Implementation of IFormCellTargetProxy.getReturnValue

Returns: string

return the return value


setDisplayValue

setDisplayValue(value: string): FormCellTargetProxy

Set display value

Implementation of IFormCellTargetProxy.setDisplayValue

Parameters:

Name Type Description
value string the value for display

Returns: FormCellTargetProxy

this, can be chained


setReturnValue

setReturnValue(value: string): FormCellTargetProxy

Set return value

Implementation of IFormCellTargetProxy.setReturnValue

Parameters:

Name Type Description
value string the value for return

Returns: FormCellTargetProxy

this, can be chained