Child pages
  • DEFAULTS
Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 28 Next »

Refresh page May 04, 2024 16:55

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

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

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.

  • No labels