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¶
-
FormCellTargetProxy
Implements¶
Summary¶
Constructors¶
Methods¶
- getDisplayValue
- getEntitySet
- getFunction
- getQueryOptions
- getReturnValue
- getServerSidePaging
- getService
- setDisplayValue
- setEntitySet
- setFunction
- setQueryOptions
- setReturnValue
- setServerSidePaging
- setService
Constructors¶
constructor¶
+ new FormCellTargetProxy(specifier
: any): FormCellTargetProxy
Parameters:
Name | Type |
---|---|
specifier |
any |
Returns: FormCellTargetProxy
Methods¶
getDisplayValue¶
▸ getDisplayValue(): string
Implementation of IFormCellTargetProxy
Returns: string
return the display value
getEntitySet¶
▸ getEntitySet(): string
Implementation of IFormCellTargetProxy
Returns: string
return the entity set
getFunction¶
▸ getFunction(): any
Implementation of IFormCellTargetProxy
Returns: any
return the function object in {Name: string, Parameters?: {key: string, value: any}} format
getQueryOptions¶
▸ getQueryOptions(): string
Implementation of IFormCellTargetProxy
Returns: string
return the query options
getReturnValue¶
▸ getReturnValue(): string
Implementation of IFormCellTargetProxy
Returns: string
return the return value
getServerSidePaging¶
▸ getServerSidePaging(): boolean
Implementation of IFormCellTargetProxy
Returns: boolean
return the serverSidePaging value
getService¶
▸ getService(): string
Implementation of IFormCellTargetProxy
Returns: string
return the service name
setDisplayValue¶
▸ setDisplayValue(value
: string): this
Implementation of IFormCellTargetProxy
Set display value
Parameters:
Name | Type | Description |
---|---|---|
value |
string | the value for display |
Returns: this
this, can be chained
setEntitySet¶
▸ setEntitySet(value
: string): this
Implementation of IFormCellTargetProxy
Set entity set
Parameters:
Name | Type | Description |
---|---|---|
value |
string | the entity set |
Returns: this
this, can be chained
setFunction¶
▸ setFunction(value
: any): this
Implementation of IFormCellTargetProxy
Set function
Parameters:
Name | Type | Description |
---|---|---|
value |
any | the function object in |
Returns: this
this, can be chained
setQueryOptions¶
▸ setQueryOptions(value
: string): this
Implementation of IFormCellTargetProxy
Set query options
Parameters:
Name | Type | Description |
---|---|---|
value |
string | query string |
Returns: this
this, can be chained
setReturnValue¶
▸ setReturnValue(value
: string): this
Implementation of IFormCellTargetProxy
Set return value
Parameters:
Name | Type | Description |
---|---|---|
value |
string | the value for return |
Returns: this
this, can be chained
setServerSidePaging¶
▸ setServerSidePaging(value
: boolean): this
Implementation of IFormCellTargetProxy
Set serverSidePaging value
Parameters:
Name | Type | Description |
---|---|---|
value |
boolean | boolean value for if server supports ServerSidePaging(skiptoken) for pagination |
Returns: this
this, can be chained
setService¶
▸ setService(value
: string): this
Set service
Parameters:
Name | Type | Description |
---|---|---|
value |
string | service name |
Returns: this
this, can be chained