1

ExtJS でパスワード要件のヘルプ ボックスを作成しようとしています。順序付けられていないリストのインライン CSS スタイルをレンダリングしていません。style="list-style-type: circle;" を入れています。

パスワードボックスのコードは次のとおりです。

        {
            xtype: 'panel',
            html: '<br></span><div style="border:2px solid;padding:5px;width:329px">* Password must be a minimum of 8 characters in length. Passwords must contain a combination of characters from <b>three of the following four categories</b>:<br><br><ul style="list-style-type: circle;"><li>An uppercase character (A-Z)</li><li>An lowercase character (a-z)</li><li>A number from 0-9</li><li>One of the following special characters: ~!@#$%^&amp;*_-+=`|&#92; (){}[]:;&quot;&lt;&gt;&#39;,.?&#47;</li></ul><div>'
        }

これがレンダリングされているものです(パスワードボックスに円の箇条書きが必要です): ここに画像の説明を入力

4

1 に答える 1

1

インライン スタイルを使用しないでください。次のように、新しいクラスを宣言します。

.fred ul
{
    list-style: circle outside none;
}

次に、パネルに対して次のようにします。

{
    xtype: 'panel',
    bodyCls: 'fred'
}

それはあなたのために働くかもしれません。

于 2012-08-29T14:14:55.640 に答える