Version

GetValueJavaScript Property

Java Script pattern to get value from the contol defined in the ControlID property.
Syntax
'Declaration
 
Public Property GetValueJavaScript As String
public string GetValueJavaScript {get; set;}
Remarks

The string in this property is an encoded string some parts of which will be replaced before they are brought to the client and used. The line of the JavaScript code is expected to return a value which will be used to retrieve and assign the control's value back to the cell. Replaceable parts must be enclosed in curly braces. Supported matches:

{ClientID}

{UniqueID}

Examples:

            $get({ClientID}).value
            $find({ClientID}).getValue()
            
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also