0

フィールドがxmlファイルで作成しているjoomla2.5でカスタムコンポーネントを作成しました。これがコードです。

<?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>

説明テキストエリアを、新しい記事フォームと同じようにエディターにします。どうすればいいですか?

4

1 に答える 1

5

私は自分の問題を解決しました。説明フィールドのタイプを変更するだけです。

<field
        name="description"
        type="editor"
        label="Description"
        description="This is the description"
        filter="safehtml"
        class="inputbox"
        default=""
    />
于 2012-04-12T07:56:42.010 に答える