How to access webform elements in webform.html.twig in Drupal 8 & 9

29th May 2022
Table of contents

How to access webform elements in webform.html.twig in Drupal 8 & 9

{#
/**
 * @file
 * Default theme implementation for a webform submission form.
 *
 * Available variables:
 * - form: The webform submission form.
 *
 * @ingroup themeable
 */
#}
{# {{ dump(form) }} #}

<div class="webform">
  <div class="form-wrap clearfix">
      <form{{ form.attributes }}>
        {{ title_prefix }}
        <div class="row">
          <div class="col-md-6">
            {{ form.elements.name }}
            {{ form.elements.email }}
            {{ form.elements.contact_number }}
            {{ form.elements.submission_origin }}
          </div>
          <div class="col-md-6">
            {{ form.elements.actions}}
          </div>
        </div>
          {{ form.form_build_id }}
          {{ form.form_token }}
          {{ form.form_id }}
      </form>
    </div>
  </div>
</div>
Bạn thấy bài viết này như thế nào?
0 reactions

Add new comment

Image CAPTCHA
Enter the characters shown in the image.
Câu nói tâm đắc: “Điều tuyệt với nhất trong cuộc sống là làm được những việc mà người khác tin là không thể!”

Related Articles

Master list (in progress) of how to get parts of fields for use in Twig templates. I’m always having to look these up, so I thought I’d hash them out and write them down.

Litespeed Cache là plugin WordPress dùng để kết hợp với Web Server LiteSpeed nhằm tăng tốc website WordPress của bạn gấp nhiều lần

In this article, we are going to see how some tools & libraries will make people's lives easier during the development & code review process.

In this tutorial, you will learn how to improve the custom code, theme and module, and general code development by using the pre-commit hook on git

Trước khi tìm hiểu xem PHP Code Sniffer là gì thì các bạn cần phải nắm được coding convention là gì đã.