ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / Editors / Window editor and page editor / Page editor / Responsive Web Design
  • Overview
  • Methods used
  • Desktop First method
  • Mobile First method
  • Principle
  • Before we start
  • Tips and recommendations for creating a new site with pages in Responsive Web Design or for transforming the pages found in an existing site
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
Warning
In version 28, the "Responsive Web Design: layout by slice" mode becomes "Slices (legacy Responsive mode)".
"Responsive (zoning and layouts)" is now the recommended mode for any new project. For more details, see New edit mode for mobile-friendly websites.
This page is adapted to the new options of version 28.
Overview
Websites can be viewed on several platforms: mobiles, tablets, PCs, etc. The browser size changes on each device as well as the space used to display data.
The "Responsive Web Design" method consists in creating a single page that automatically adapts according to the platform used.
WEBDEV allows you to create pages by using the "Responsive Web Design" method and it allows you to optimize the page display on different platforms via several editor features.
Check a WEBDEV example that supports Responsive Web Design by clicking the following link Site presenting WM Sport Assistant. Display this page and resize the browser to see the different resolutions.

Methods used

WEBDEV proposes 2 modes for creating and managing Responsive Web Design pages:
  • Desktop First mode: The page is defined in its largest version (Desktop) that is used as reference, then the page is modified for the smaller slices (Tablet and Mobile).
  • Mobile First mode: The page is defined in its smallest version (Mobile) that is used as reference, then the page is modified for the larger slices (Tablet and Desktop).

Desktop First method

Developers must create the interface of their Website in "Desktop" mode. Then, they can create the version in "Tablet" mode, and finally, in "Mobile" mode.
This method stems from the need to use the site on all the combinations of supports and screen resolutions.
In terms of design, this means a website is intended to be used on desktop devices first. With lower display resolutions (page size), the content and features are moved, resized or hidden.

Mobile First method

First, the developer must create the interface of his Web site in "Mobile" mode. Then, he will create the version in "Tablet" mode and finally he will create the version in "Desktop" mode.
This method stems from the need to add functionalities to the site according to the combinations of supports and screen resolutions.
In terms of design, this means a website is intended to be used on mobile devices first. When reducing the display resolutions (page size), the content and the features are either moved, or resized, or hidden.

Principle

In the WEBDEV editor, different resolutions are represented via slices. A slice represents a browser size for a specific device. WEBDEV includes 3 slices:
  • The Mobile slice, which corresponds to smartphones.
  • The Tablet slice, which corresponds to tablets.
  • The Desktop slice, which corresponds to devices such as PC, MAC, etc.
For more details, see Responsive Web Design: Managing slices.
Make sure that the Web site can operate even in Mobile version.
Summary:
  • In Desktop First mode, you must think "Desktop" before thinking "Tablet" then "Mobile": any UI modification (page creation, addition of controls, organization of controls in the page, position of links or buttons, ...) must be performed in "Desktop" mode.
  • In Mobile First mode, you must think "Mobile" before thinking "Tablet" then "Desktop": any UI modification (page creation, addition of controls, organization of controls in the page, position of links or buttons, ...) must be performed in "Mobile" mode.
Documentation about Responsive Web Design: Don't hesitate to read the following documentation pages (recommended reading order):
  1. Managing anchors.
  2. Managing slices.
  3. Creating a Responsive Web Design page.
  4. Test of Responsive Web Design pages.
  5. Managing a header bar.
  6. Applying the Responsive Web Design mode to an existing page.
  7. Tips.
Before we start

Tips and recommendations for creating a new site with pages in Responsive Web Design or for transforming the pages found in an existing site

Before implementing Responsive Web Design in a WEBDEV site, you must read the following recommendations:
  • General points
    • Correct ALL UI errors, in all the slices. This step is FUNDAMENTAL. There may be UI errors in one slice and not the others. The text of the UI error indicates which slice contains the error.
    • Depending on the mode (Desktop First or Mobile First), the layout must be defined in the "Desktop" or "Mobile" slice. Then, it must be defined for the smaller or larger slices (respectively "Tablet" and "Mobile" or "Desktop").
    • Transform the page templates for Responsive Web Design before transforming the site pages.
    • When creating a new page, it may be useful to group the controls by logical blocks (by using a cell) in order to easily handle them in the slices.
    • Keep the same tab order in all the slices.
      Specific UI errors are displayed if this order is not kept. For more details, see Responsive Web Design: Specific UI errors.
    • Don't forget to check the pages in your browser while reducing or enlarging the browser width in order to simulate all the resolutions.
      Remark: The browsers also propose specific options for running the test of Responsive Web Design pages. For more details, see Check the "Responsive Web Design" pages.
  • Controls
    • Depending on the mode (Desktop First or Mobile First), never add controls in the smaller or larger slices. For example, in Desktop First mode, add the controls in the "Desktop" slice then make the necessary changes in the smaller slices.
    • The changes made to a control in a slice are contextual to this slice: this is the override mechanism.
    • To display or enter the same information, do not hesitate to use different types of controls in each slice. For example, in Desktop First mode, you can use a radio button in the "Desktop" and "Tablet" slice, and a combo box in the "Mobile" slice. Caution: the control exists in all slices.
      The control that must not appear in a slice must be made invisible in the other slices. To make the control visible or invisible:
      1. Select the control.
      2. Display the popup menu (right mouse click) and select "Responsive Web Design .. Visibility by slice".
    • Don't hesitate to divide an edit control into 2 sections: caption and input area. This allows you to easily handle the elements when switching to "Mobile" slice (case of Desktop First). For example, a caption on the left and an input area on the right become a caption above and an input area below.
    • Don't forget to use the indication text of the control or the alternative text (in the "Help" tab of the control description) to "save" space: switching to the smaller slices will be easier.
    • We advise you to resize a control in a slice rather than modifying its horizontal anchor. Indeed, the anchor is defined for all the slices but the width can be overridden for each slice.
    • Avoid the stackable controls. Stay on the grid to benefit from the Responsive features.
  • Slices
    • Define the toggle points of slices: When reducing or increasing the resolution, the page layout can be modified before the limit of the slice. In this case, simply modify the slice break point in order to always get the desired interface.
      In Desktop First mode:

      For example, the toggle point of the slices corresponds to the toggle from 4 to 3 then 2 elements per line when switching from "Desktop" mode to "Tablet" mode. To avoid going through the intermediate step (3 elements on the same line), the size of the "Tablet" slice must be modified in order to go from 4 to 2. Once the size of the "Tablet" slice is modified, its interface must be modified (if not already done) in order to display 2 elements side by side in "Tablet" mode. Therefore, when reducing resolution, the interface directly goes from 4 to 2 elements.
    • Check overrides in each slice. Don't hesitate to delete all the overrides on a slice to rebuild the page layout (for more details, see Deleting a slice).
    • Slice ruler (yellow, green and blue section): You can create a new slice or resize an existing one. A slice is required:
      • to adapt to a device. The "Tablet" slice (840 pixels) and the "Mobile" slice (480 pixels) are created by default (Google Material Design specifications).
      • to adapt its content (to be done by the developer) according to the site to create.
  • Anchors (for more details, see Responsive Web Design: Managing anchors).
    • Parameters of the anchoring window:
      • Width:
        • Size in edit: option to use if the control must keep its size.
        • Adapt to the grid: option to use if the control must be reduced and if it must proportionally follow the page width in the browser.
    • Anchors: Why center a control?
      Responsive Web Design keeps the proportions, therefore a control that is centered will remain centered. There is no need to anchor it. The centered anchor exists but it is intended to the fixed-width controls and the entire width must be reserved.
Minimum version required
  • Version 21
Comments
Click [Add] to post a comment

Last update: 03/17/2023

Send a report | Local help