Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.


Note

s_widget is an object of the SimpleWidget class initialized within a widget you create.

s_widgets is an object of the SimpleWidgets class initialized when you add a widget to a form or a portal page.

The widget API describes methods and custom method declarations for widget structure and functionality customization:

  • Use s_widget and s_widgets methods in client-side scripts to implement the widget functionality you need.
  • If you need to create your own widget methods, use the custom method functionality.
Info

These methods can be used on the client-side only.

s_widget


To perform the current widget customization you created, use the methods below.

Info
titleManual console invoke

In the console, to manually invoke the method, pass the widget instance ID as the first parameter. Ex.For example, to call the following method:

Code Block
languagejs
s_widget.getFieldValue(key); 

use the method instead:

Code Block
languagejs
s_widget.getFieldValue(widgetId, key);



s_widget.addTemplate(id, template, script, type)


This method adds a child template to the existing template by its ID with one of the following types: inner, before, after.

Parameter(s):

NameTypeMandatoryDefault Value
idStringYN
templateStringYN
scriptString

Note

This parameter is mandatory if you need to define the type parameter. If no script is needed, then use an empty string ('') as in the example below.


N
typeString (possible options: inner, before, after)Y

inner 

Tooltip
onlyIcontrue
appendIconinfo-filled
iconColorblue

If not specified.


Return:

TypeDescription
VoidThis method does not return a value.

Example:

Code Block
languagexml
titleAdd to a template field:
<div id="steps"></div>


Code Block
languagejs
themeEclipse
titleAdd to a client script
s_widget.addTemplate('steps', '<div class="main">', '', 'inner');

s_widget.getElements()


This method returns the structure element structure of a widget.

Return:

TypeDescription
array<elements>The widget structure elements are collected in an array.

Example:

Code Block
languagejs
themeEclipse
titles_widget.getElements()
linenumberstrue
window.s_widget.getElements();

s_widget.getFieldValue(key)


Use this method to return the widget field value defined by the key option.

Parameter(s):

NameTypeMandatoryDefault Value
keyStringYN

Return:

TypeDescription
mixedThe value of the field is defined by the key defined.

Example:

Code Block
languagejs
themeEclipse
titles_widget.getFieldValue
linenumberstrue
s_widget.getFieldValue('element');

s_widget.getForm()


This method returns a form object that is placed using the <Form> or <remform> tags.

Parameter(s):

NameTypeMandatoryDefault Value
nameStringYN

Return:

TypeDescription
ObjectThis method returns a SimpleForm object.

Example:

Code Block
languagejs
themeEclipse
titles_widget.getOptionValue
const builtInForm = s_widgets.getForm('custom');
await builtInForm.save();

s_widget.getId()


This method returns a widget instance ID as a string value.

Return:

TypeDescription
StringThis method returns a widget instance ID.

Example:

Code Block
languagejs
themeEclipse
titles_widget.getId
linenumberstrue
s_widget.getId();

s_widget.getOptionValue(key)


Use this method to return the a widget option option value defined by the key option.

Parameter(s):

NameTypeMandatoryDefault Value
keyStringYN

Return:

TypeDescription
mixedThe value of the widget options is defined by the key.

Example:

Code Block
languagejs
themeEclipse
titles_widget.getOptionValue
s_widget.getOptionValue('label');

s_widget.removeTemplate(id)


The method removes all child nodes and content from the specified elements. It does not remove the element itself or its attributes.

Parameter(s):

NameTypeMandatoryDefault Value
idStringYN

Return:

TypeDescription
VoidThis method does not return a value.

Example:

Code Block
languagexml
themeEclipse
titleAdd this to the Template field
linenumberstrue
<div id="element1">
  Remove me
</div>
<button buttonType="approve" event-click="window.s_widget_custom.remove();">
  Click me
</button>


Code Block
languagecss
themeEclipse
titleAdd this to the CSS field
linenumberstrue
#element1 {
  background-color: yellow;
  height: 20px;
}


Code Block
languagejs
themeEclipse
titleAdd this to the Client Script field
linenumberstrue
;
(() => {
    window.s_widget_custom = window.s_widget_custom || {};
    window.s_widget_custom.remove = function () {
        s_widget.removeTemplate('element1');
    } 
})();

s_widget.setFieldValue(key, value)


This method sets the a value using the key.

Info

If the value parameter is equal to 'null', for example, s_widget.setFieldValue('subject', null), the defined field will be is cleared.

Parameter(s):

NameTypeMandatoryDefault Value
keyStringYN
valuemixedYN

Return:

TypeDescription
VoidThis method does not return a value.

Example:

Code Block
languagejs
themeEclipse
titles_widget.setFieldValue
linenumberstrue
;
(async () => {
    const tableName = s_form.getTableName();
    const recordId = s_form.getUniqueValue();
    const serviceId = s_form.getValue('service');
    const serviceDisplayValue = s_form.getDisplayValue('service');

    s_widget.setFieldValue('table_name', tableName);
    s_widget.setFieldValue('record_id', recordId);
    s_widget.setFieldValue('service', { database_value: serviceId, display_value: serviceDisplayValue });
    await s_widget.serverUpdate();
})();


s_widget.serverUpdate()


This method transfers widget data to a server script and updates widget data according to the server reply.

Return:

TypeDescription
ObjectThis method returns a promise containing specific data.

Example:

Code Block
languagejs
themeEclipse
titles_widget.serverUpdate
linenumberstrue
;
(async () => {
    const tableName = s_form.getTableName();
    const recordId = s_form.getUniqueValue();
    s_widget.setFieldValue('table_name', tableName);
    s_widget.setFieldValue('record_id', recordId);
    const response = await s_widget.serverUpdate();
    console.log(response.getData().data);
})();

s_widget.setOptionValue(key, value)


This method sets the a widget option option value using the key option.

Parameter(s):

NameTypeMandatoryDefault Value
keyStringYN
valuemixedYN

Return:

TypeDescription
VoidThis method does not return a value.

Example:

Code Block
languagejs
themeEclipse
titles_widget.setOptionValue
s_widget.setOptionValue('label', 'name');

s_widget.showData()


The method displays the field data of a widget in the console. 

Return:

TypeDescription
Void

This method does not return a value.

Example:

Code Block
languagejs
themeEclipse
titles_widget.showData
s_widget.showData();

s_widgets


Invoke the s_widgets methods within your scripts, when adding a widget to a form, a page or for widgets interaction.

s_widgets.getFieldValue(widgetInstanceID, key)


This method returns the objectvalue using the key and widget instance ID.

Parameter(s):

NameTypeMandatoryDefault Value
widgetInstanceIDString (the sys_id value)YN
keyIntegerYN

Return:

TypeDescription
mixedReturns the object value.

Example:

Code Block
languagejs
themeEclipse
titles_widgets.getFieldValue
s_widgets.getFieldValue('157555401214600424', 'name');

s_widgets.getWidgets()


This method returns all the widget instance IDs of the page.

Return:

TypeDescription
List<String>List A list of ID objects of the String type. 

Example:

Code Block
languagejs
themeEclipse
titles_widgets.getWidgets
s_widgets.getWidgets();

s_widgets.setFieldValue(widgetInstanceID, key, value)


This method sets the value using the key and the widget instance ID.

Parameter(s):

NameTypeMandatoryDefault Value
widgetInstanceIDString (the sys_id value)YN
keyIntegerYN
valuemixedYN

Return:

TypeDescription
VoidThis method does not return a value.

Example:

Code Block
languagejs
themeEclipse
titles_widgets.setFieldValue
s_widgets.getFieldValue('157555401214600424', 'name', 'Alex');

Anchor
Custom method
Custom method
s_widget_custom


Within the client-side scripts, you can configure your own widget methods by using the window.s_widget_custom variable:

Code Block
languagejs
themeEclipse
titleEx.
linenumberstrue
window.s_widget_custom.updateFullname = function() {
  //
}


Table of Contents
maxLevel3
classfixedPosition