Skip to content

Class: SimplePropertyFormCellProxy

SimplePropertyFormCellControlProxy is a developer-facing interface that provides access to a SimpleProperty control and allows customizations. In addition it provides access to the IFormCellProxy interface.

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 SimplePropertyFormCellProxy(context: IContext): SimplePropertyFormCellProxy

Inherited from FormCellControlProxy.constructor

Parameters:

Name Type
context IContext

Returns: SimplePropertyFormCellProxy

Methods

getAlternateInput

getAlternateInput(): string

Returns the AlternateInput property value defined for the FormCell's control.

Implementation of ISimplePropertyFormCellProxy.getAlternateInput

Returns: string


getKeyboardType

getKeyboardType(): any

Returns the KeyboardType property value defined for the FormCell's control.

Implementation of ISimplePropertyFormCellProxy.getKeyboardType

Returns: any


getPlaceHolder

getPlaceHolder(): string

Returns the PlaceHolder property value defined for the FormCell's control.

Implementation of ISimplePropertyFormCellProxy.getPlaceHolder

Returns: string


setAlternateInput

setAlternateInput(alternateInput: string): Promise<any>

Sets the AlternateInput property of the FormCell's control. Accepted values are: "None", "Barcode".

Implementation of ISimplePropertyFormCellProxy.setAlternateInput

Parameters:

Name Type
alternateInput string

Returns: Promise<any>


setKeyboardType

setKeyboardType(keyboardType: string): Promise<any>

Sets the KeyboardType property of the FormCell's control. Accepted values are: "DateTime", "Default", "Email", "Number", "Phone", "Url","Password", "NumberPassword"

Implementation of ISimplePropertyFormCellProxy.setKeyboardType

Parameters:

Name Type Description
keyboardType string value to set.

Returns: Promise<any>


setPlaceHolder

setPlaceHolder(placeHolder: string): Promise<any>

Sets the PlaceHolder property of the FormCell's control.

Implementation of ISimplePropertyFormCellProxy.setPlaceHolder

Parameters:

Name Type Description
placeHolder string value to set.

Returns: Promise<any>