Skip to content

DomDynamicsNAVEdit

This behavior pattern implements standard behavior for Edit control.

Extends HTMLObject

Extends SeSSimulatedObject

Behavior Pattern: DomDynamicsNAVEditBehavior

Property Summary

Property Description Getter Setter
Text Text of the object, 'false' if text can not be read. GetText SetText

Action Summary

Action Description
DoClick Clicks on the edit field.
DoOpen Opens lookup table for this edit field.
DoSetText Sets text value of this object.

Property Detail

Text

Text of the object, 'false' if text can not be read.

Type: string

Accessors: GetText, SetText

value = SeS('SomeDomDynamicsNAVEdit').GetText()

SeS('SomeDomDynamicsNAVEdit').SetText(/**string*/ value)

Action Detail

DoClick

Clicks on the edit field.

SeS('SomeDomDynamicsNAVEdit').DoClick(x, y, forceEvent)

Parameters:

Name Type Description
x number X coordinate to click.
Optional.
y number Y coordinate to click.
Optional.
forceEvent boolean Pass 'true' to force browser event without actual mouse click
Optional, Default: "false".

Returns:

boolean: 'true' if successful, 'false' otherwise'

DoOpen

Opens lookup table for this edit field.

SeS('SomeDomDynamicsNAVEdit').DoOpen(x, y, forceEvent)

Parameters:

Name Type Description
x number X coordinate to click.
Optional.
y number Y coordinate to click.
Optional.
forceEvent boolean Pass 'true' to force browser event without actual mouse click
Optional, Default: "false".

Returns:

boolean: 'true' if successful, 'false' otherwise

DoSetText

Sets text value of this object.

SeS('SomeDomDynamicsNAVEdit').DoSetText(value)

Parameters:

Name Type Description
value string Text value.

Returns:

boolean: 'true' if success, 'false' otherwise.