Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/form-question-types.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2897,7 +2897,7 @@ The ``field-list`` appearance attribute, applied to a group of widgets, displays

.. warning::

Displaying :ref:`repeats` on the same screen (inside a ``field-list`` group) is not supported.
In Collect, displaying :ref:`repeats` on the same screen (inside a ``field-list`` group) is not supported. :doc:`Web Forms <web-forms-intro>` supports it: the whole group, including the repeat, is shown on one screen.

.. seealso::

Expand Down
20 changes: 16 additions & 4 deletions docs/web-forms-intro.rst
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,6 @@ We've extensively tested ODK Web Forms and consider it ready for production use

For users who have been using web forms in Central prior to v2026.2.0, here is functionality in Enketo that's coming to Web Forms, in rough order of priority:

* One question per page
* Jump to first error
* Last-saved
Comment on lines -34 to -36

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@matthew-white @lognaturel I have resolved the conflict and removed these features from the list because we have already released them.

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm merging this now :)

* Satellite basemaps
* big-image for labels
* no-calendar appearance
Expand Down Expand Up @@ -207,11 +204,26 @@ You can style text such as notes, labels, hints, options, and validation message
.. image:: /img/web-forms/form-styling.*
:alt: Styling in Web Forms

.. _web-forms-pages:

Pages
------

.. versionadded:: Web Forms v1.1

To use pages in a form, set the ``style`` to ``pages`` in the ``settings`` sheet, as described in `the XLSForm documentation <https://xlsform.org/en/#multiple-webpage-forms>`_.

By default, each question is shown on its own page. To show several questions together on one page, put them in a group with the :ref:`field-list appearance <field-list>`.

Unlike Collect, a ``field-list`` group can also contain a repeat and it is shown on the same page, along with the other questions. You can also apply ``field-list`` to a repeat itself. In that case, each repeat instance becomes a page.

Use the :guilabel:`Back` and :guilabel:`Next` buttons to move between pages. Pages where no question is :ref:`relevant <relevants>` are skipped.

Translations
------------

.. seealso::

:doc:`guide-form-language`

Web Forms will display text using the default language specified in the form definition if there is one, reverting to the first supported language the user has configured in their browser. If no browser language matches one of the form languages, then the default language is English. The user may select their preferred language from the language selector dropdown shown at the top of the form, which is then saved and used for all future forms.
Expand Down