Supported Clients
SmartClient
WebClient
NGClient

Constants Summary
JSMethod
COMMAND_DEFAULT
Constants used for setting commands to "default".
JSMethod
COMMAND_NONE
Constant used for setting commands to "none".

Constants Details

COMMAND_DEFAULT

Constants used for setting commands to "default".

Returns

JSMethod

Supported Clients

SmartClient,WebClient,NGClient

Sample

var form = solutionModel.newForm('parentForm', 'db:/example_data/parent_table', null, false, 1200, 800);
form.onFindCmd = SM_DEFAULTS.COMMAND_DEFAULT; // This makes the find work like it does by default.

COMMAND_NONE

Constant used for setting commands to "none".

Returns

JSMethod

Supported Clients

SmartClient,WebClient,NGClient

Sample

var form = solutionModel.newForm('parentForm', 'db:/example_data/parent_table', null, false, 1200, 800);
form.onFindCmd = SM_DEFAULTS.COMMAND_NONE; // This disables the find on the form.