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: ~!@#$%^&*_-+=`|\ (){}[]:;"<>',.?/</li></ul><div>'
}
これがレンダリングされているものです(パスワードボックスに円の箇条書きが必要です):