我在 joomla 2.5 中创建了一个自定义组件,其中字段在 xml 文件中创建。这是代码。
<?xml version="1.0" encoding="utf-8"?>
<form>
<fieldset>
<field
name="id"
type="hidden"
/>
<field
name="title"
type="text"
label="Title"
description="This is the title"
size="40"
class="inputbox"
default=""
style="width:294px;height:135px;"
/>
<field
name="description"
type="textarea"
label="Description"
description="This is the description"
rows="20"
cols="10"
class="inputbox"
default=""
/>
</fieldset>
</form>
我希望描述文本区域像在新文章表单中一样成为编辑器。我将如何做到这一点?