LoginSignup
0
0

More than 3 years have passed since last update.

OctoberCMS 管理画面実装テク:テキストフィールドの文字数制限を変更する

Posted at

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

管理画面フォームのtextタイプのフィールドはデフォルトで255文字の制限がある。
これはattributesプロパティを使えば属性を上書きできる。

myfield:
    label: "My Field"
    type: text
    attributes:
        maxlength: '1000'

参考

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