ckeditor 与 drupal 自定义表单
我创建了自己的模块表单,其中包含地址文本区域,
$form['address'] = array(
'#input_format' => '1',
'#rows' => '5',
'#weight' => '4',
'#type' => 'textarea',
'#title' => t('Address'),
);
当我运行表单时,我在 CKEditor 下方得到以下帮助
:用于排除或包含此元素的 ID 是customers/edit/5.edit-address。
所以我得到了元素 ID 并将其输入到 ckeditor 的包含设置中
,但编辑器仍然没有出现在该字段中,我是否遗漏了一些东西?
I created my own module form which include address textarea
$form['address'] = array(
'#input_format' => '1',
'#rows' => '5',
'#weight' => '4',
'#type' => 'textarea',
'#title' => t('Address'),
);
when i run the form i got the following help below it
CKEditor: the ID for excluding or including this element is customers/edit/5.edit-address.
so i got the element ID and entered it in the include setting of the ckeditor
but still the editor doesn't appear on that field, am I missing something ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用“text_format”的#type 和“textarea”的#base_type,它应该可以工作。像这样:
use a #type of "text_format" with a #base_type of "textarea" and it should work. like this: