Using Resolution Breakpoints

Breakpoints is a common component property that shows which styles will be applied for each defined resolution breakpoint. Using this property allows making changes to already added component styles or applying new CSS rules while within the defined viewport width, keeping the initial set of custom styles intact.

Despite being referred to as Resolution Breakpoints, the actual thing that the property targets is the browser’s viewport width. That’s why the style changes still apply when the browser window is resized, even though the real screen resolution doesn’t change.

In order to apply styles on a certain viewport width (and all that are below it), you need to set up a custom breakpoint first, and then add or edit component’s custom CSS styles while working with the created breakpoint being active.

By default, all custom CSS styles that are added to web component properties in Iotellect are applied on any viewport width. There are no resolution breakpoints defined for a dashboard in the UI Builder until a user wants to use them.

Breakpoint information can be used in bindings. For example, to set form data based on the type of screen resolution detected.

When choosing how to activate bindings that deal with breakpoint information, note that breakpoint information is available from the time that the dashboard is displayed to the user, not from when the dashboard starts up. The activator form/:shown@ should be used for bindings utilizing breakpoint information, rather than setting the activation to On Startup.

Setting up Resolution Breakpoints

So, the first thing to do is to set up resolution breakpoints for a dashboard:

  1. While in the UI Builder, locate the Resolution Selector combo box in the right part of the header and expand it by clicking on its input field.

  2. In the appeared dropdown list, select the () Edit Options option to open the Breakpoints configuration dialog.

  1. In the Breakpoints dialog, add a new element by clicking the () Add Row button.

  2. In the created table row, add the custom breakpoint name and its description to the Name and Description fields, respectively.

  3. Next here, in the Value field, you may select one of the predefined default options from the dropdown list, or enter custom screen width into the text input available inside. Enter a custom width below your screen size in the number format to ensure you will be able to test the resulting changes when working with responsive styles down the line.

Details on the viewport widths available by default to choose from can be found under the Current Breakpoint property description.

  1. The Enabled field is there to provide an option to exclude the created breakpoint from the list of available breakpoints to set custom styles at, but to keep it in case if it’s needed again. Leave the field value checkbox active.

  2. Apply changes by closing the configuration dialog with the OK button at the bottom. Now, the breakpoint is added.

  1. The new resolution breakpoint is configured. Test that it works by selecting it from the Resolution Selector dropdown in the UI header. The Root Panel’s layout should change its size, matching the width specified in the breakpoint’s Value field.

When a breakpoint is created and enabled, once the viewport has the specified width, the breakpoint’s name becomes the value of the Current Breakpoint property value.

Since the Current Breakpoint is a public variable, it can be addressed in bindings as a trigger to perform any kind of useful actions beyond just changing component styles and rearranging dashboard layouts.

Changing Component Styles With Resolution Breakpoints

After a custom breakpoint is set, it’s time to implement responsive component styles using the Breakpoints component’s property.

  1. In the UI Builder, add a component to the dashboard by clicking on it in the Component Palette or by dragging it to the layout.

  2. Open its Properties Editor by hovering over the component on the layout with the cursor and clicking the () Configure button in the top-right corner of the appeared overlay, or by selecting it in the Component Tree.

  3. In the Properties Editor, switch to a tab containing a custom style property.

  1. In the opened tab, add the base CSS styles to the local custom CSS field to have something extra to work with later:

color: skyblue;
font-size: 48px;
font-weight: 800;
padding: 8px;
transition: 0.24s;

A component having initial custom styles isn’t necessary for Breakpoints to function. We are adding some base styles to the component here to make the example more clear in the sense of what happens when the viewport width changes.

  1. The style is applied once the field is out of focus, and the result is visible on the dashboard.

  1. Switch to the Basic Properties tab of the component’s Properties Editor.

  2. In the Basic Properties tab, drill-down into the Breakpoints property by clicking the Click to open… button next to its name.

  3. In the opened configuration dialog, add a new element by clicking the () Add Row button.

  4. In the created table row, add the Name of the custom breakpoint you set according to the Setting up Resolution Breakpoints example to the Breakpoint field. For, you can leave Style and Container Style fields empty.

  5. Apply changes by closing the configuration dialog with the OK button at the bottom. Now, the breakpoint is added.

  1. Expand the Resolution Selector combo box in the right part of the header by clicking on its input field.

  2. In the appeared dropdown list, select the previously added custom breakpoint with the Name you specified in the Breakpoint field of the component’s Breakpoints property.

  3. The Root Panel’s layout changes its size, matching the width specified in the activated resolution breakpoint.

  1. In the still opened component’s Properties Editor, switch back to the tab containing the custom style property where the base component styles were added.

  2. In the opened tab, you can still see the CSS styles initially applied to the component in the local custom style property. You can either leave it as is and edit what’s already there or erase everything except the styles you want to change. Let’s leave only the styles planned to change and add a couple more specific only to this breakpoint:

font-size: 20px;
padding: 40px 80px;
background-color: midnightblue;

The styles that are added to components while the universal * [None] breakpoint is selected in the Resolution Selector are still applied to the component when the breakpoint changes, even if deleted from the custom CSS style property at this breakpoint.

If some of them were intentionally changed for the active breakpoint, the new value renders instead of the initial one.

  1. The style is applied once the field is out of focus, and the result is visible on the dashboard.

  1. Switch back to the universal * [None] breakpoint in the Resolution Selector combo box to witness that the component’s custom CSS property is back to the original value with all the styles added before the changes.

  2. If you check the value of the Breakpoints property in the Basic Properties tab of the component’s Properties Editor, you will see that the styles for the custom breakpoint are added to the corresponding field as following:

style:font-size: 20px; padding: 40px 80px; background-color: midnightblue;*~*

It is possible to write responsive styles for a breakpoint right away into the Style and Container Style fields of the Breakpoints dialog once you’ve added the new breakpoint. In this case, write the properties you need to change or add using the highlighted syntax above.

  1. To test the configured breakpoint in action, open the dashboard in a separate Preview Mode tab by clicking the () Run button in the right part of the UI header.

  2. Resize the browser window containing the opened tab until its width hits the value defined in the custom breakpoint. The moment it happens, responsive styles are applied and changes are visible on the dashboard. Resize the window wider than the breakpoint value again to see how the styles change back.

When the resulting CSS for a component is compiled on the dashboard render, the configured Breakpoints and corresponding CSS styles are converted to @media CSS rules. It excludes most of the possible cross-property conflicts if you are using CSS Media Queries, as the breakpoint styles are merged with any locally used @media injections.

Was this page helpful?