LoginSignup
0
0

More than 3 years have passed since last update.

OctoberCMS 管理画面実装テク:フォームに非表示フィールドを作る

Posted at

OctoberCMSの自作プラグインで管理画面を実装する際のテクニックのお話。

fields.yamlでフィールドを定義して管理画面のフォームを実装する際、<input type="hidden">のようなフィールドが意外と直感的に作れない。

hiddenプロパティでできそうだが、これだとPOSTデータに含まれなくなる。
readOnlydisabledだと変更不可にはなるがページに表示されてしまう。

そこで、containerAttributesプロパティを使用してdisplay: noneを当ててやる。

containerAttributes:
    style: "display: none"

これで、POSTデータに含まれるが表示されないフィールドが実装できる。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0