# Discourse toolkit to render forms

**URL:** https://meta.discourse.org/t/discourse-toolkit-to-render-forms/326439
**Category:** Developer Guides
**Created:** [9월 13, 2024, 9:20오후 UTC](https://meta.discourse.org/t/discourse-toolkit-to-render-forms/326439 "2024-09-13T21:20:27Z")
**Posts on this page:** 1
**Showing post:** 24

<div class="post-metadata">

### Author: ![Arkshine](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/arkshine/32/298682_2.png) [@Arkshine](https://meta.discourse.org/u/Arkshine)
#### Post date: [3월 27, 2025, 4:11오후 UTC](https://meta.discourse.org/t/discourse-toolkit-to-render-forms/326439/24 "2025-03-27T16:11:04Z")

</div>

`MultiSelect`와 함께 커스텀 필드를 사용하는 것은 어떨까요? [https://meta.discourse.org/t/discourse-toolkit-to-render-forms/326439#p-1603904-custom-control-110](https://meta.discourse.org/t/discourse-toolkit-to-render-forms/326439#p-1603904-custom-control-110)

코어에서 몇 가지 예시를 볼 수 있습니다. 예를 들어:

```js
<form.Field
    @name="appliesTo"
    @title={{i18n "admin.config_areas.flags.form.applies_to"}}
    @validation="required"
    @validate={{this.validateAppliesTo}}
    @format="large"
    as |field|
  >
    <field.Custom>
      <MultiSelect
        @id={{field.id}}
        @value={{field.value}}
        @onChange={{field.set}}
        @content={{this.appliesToValues}}
        @options={{hash allowAny=false}}
        class="admin-flag-form__applies-to"
      />
    </field.Custom>
  </form.Field>

```

이렇게 하면 될까요?

---

_[View the full topic](https://meta.discourse.org/t/discourse-toolkit-to-render-forms/326439)._
