Low-code designer > Set up interfaces / System widget settings

System widget settings

Widgets have both individual and system settings. System settings are the same for all the widgets. They are used to configure a widget’s visibility and access to its data, define what happens, when the user moves or hovers the pointer over the widget, etc.

Events tab

On this tab, you can specify a function that will run after a certain event:

  • On mouse enter handler. A function triggered when the user hovers their mouse over the widget. For example, a pop-up window with a tip may be shown.
  • On mouse leave handler. A function run when the user moves their mouse away from the widget. For example, the tip window shown when hovering over the widget may be hidden.

 

For the Field widget, additional events are available:

  • On value change handler. A function called when a user begins editing the value in a field placed on the form. For example, when changing the value in the Discount field, the total order amount will be recalculated automatically.
  • Event of finishing value change. A function run when a user finishes editing the value in a field placed on the form, that is, presses Enter or moves the cursor outside the field. For example, in the custom Calculator widget, the calculation result will be updated only after the complete input of new values.

To configure the script to be executed:

  1. Click the Create button next to the desired event.
  2. Enter the name of the function and click Open.
  3. Write the script in the opened Scripts tab.
  4. The script is saved automatically. To exit the interface designer, click Save and Publish.

System tab

system_system_tab

  • Hide. Specify when a widget is shown on the form:
    • Always show. The widget is always visible the users.
    • Show on condition, Hide on condition. Specify a condition for hiding or showing the widget. To do that, bind a context variable to this field. For example, select Hide on condition and bind it to a Yes/No switch variable. The widget will be shown to the user if the user selects No when filling out the form. If the user selects Yes, the widget will be hidden. Below you will find an example of how this option is used.
    • Show for groups. Select user groups that will be able to see the widget. Users who are not included in these groups will no see the widget.
    • Always hide. The widget will remain hidden all the time.
  • Read only. Configure access to the widget:
    • Inherit from parent. The option is used when you use one widget inside of another. For example, you place the Associated items widget into the Column widget that has the Read only setting. If you select the Inherit from parent option for Associated items, users won't be able to edit the list of items.
    • If you select Yes, the user won’t be able to edit the widgets data. 
    • Select No to allow users to edit the widgets data.
  • HTML styles. Here you can specify the CSS styles for the widget. For example, to enter its width.
  • HTML classes. You can create an HTML style using the Code widget and apply it to the current widget. To apply a style, enter its name specified in the script in this field. You can use the same style in several widgets. For example, you can quickly apply one background color to all widgets on a form.

Applying the same background color to several widgets using the HTML classes field

Additional options

You can enable additional options for widgets that contain data, such as a tasks list, page header, added information, and so on. This will make the app form or custom page load faster.

  • Load content when the tab is active. The option is used in the Tabs widget. Enable it to load the contents of the tab only when switching to it.
  • Load the contents asynchronously. This option is available for widgets that contain data, such as Columns, My Tasks, Panel with header. Enable it to display the content only after the custom page or app form has fully loaded.

Link with a variable

You can bind the widget settings fields to context variables. This is convenient if you need to dynamically change widget settings on a page or during a business process. To bind a field:

  1. Click the bind_table-icon icon next to the field name. In the Hide field, select Show on condition or Hide on condition.
  2. Click <Not defined>.
  3. Select a context variable from the drop-down list. The list only displays variables with the same data type as the bound field.
  4. Save and publish the widget.

The setting is now defined by the selected context variable.

Use case

Lets say we have the Orders app to handle customers’ requests. For orders without prepayment, it is required to determine the payment schedule. In this case the sales rep fills out a table with the schedule information on a separate tab. The tab can be hidden or displayed depending on whether the sales rep checks the Prepayment of 100% box or not.

This can be done with the following settings:

  1. Go to the Orders app menu and click Form Settings.
  2. In the window that opens, add the following properties on the Context tab: Payments of the Table type and Prepayment of 100% of the Yes/No switch type.
  3. Go to the Create tab and click + Create form. If the form has already been created, click Edit form. The interface designer with the form will open.
  4. Drag the Tabs widget to the top panel and add the Order and Payment schedule tabs. Add the Prepayment of 100% property to the first tab and the Payments table to the second one.
  5. Go to the Payment schedule tab’s system settings. In the Hide field, select the Hide on condition option and bind it with the Prepayment of 100% property.
    use_case_hide_condition
  1. Click Save and Publish on the designer top panel.

Now if the sales rep doesn’t check the Prepayment of 100% box, the Payment schedule tab appears on the app form. Here, the sales rep can specify the payment details for the current order.

common_widget_settings-3

Found a typo? Highlight the text, press ctrl + enter and notify us