web-dev-qa-db-ja.com

PrimeNGクイルエディターのカスタムツールバー

PrimeNGでクイルエディタのカスタムツールバーを作りたいです。 Angular 2を使用しています。

これが私のhtmlコードでしたことです:

    <p-editor [(ngModel)]="message" [style]="{'height':'320px'}">
        <p-header>
          <span class="ql-formats">
            <select class="ql-size">
              <option value="small">Petit</option>
              <option selected></option>
              <option value="large">Sous-titre</option>
              <option value="huge">Titre</option>
            </select>
          </span>
          <span class="ql-formats">
            <button class="ql-bold" aria-label="Bold"></button>
            <button class="ql-italic" aria-label="Italic"></button>
            <button class="ql-underline" aria-label="Underline"></button>
            <button class="ql-strike" aria-label="Strike"></button>
          </span>
          <span class="ql-formats">
            <select title="Text Color" class="ql-color" defaultValue="rgb(0, 0, 0)">
              <option value="rgb(0, 0, 0)" label="rgb(0, 0, 0)"></option>
              ...
              <option value="rgb(61, 20, 102)" label="rgb(61, 20, 102)"></option>
            </select>
            <span class="ql-format-separator"></span>
            <select title="Background Color" class="ql-background" defaultValue="rgb(255, 255, 255)">
              <option value="rgb(0, 0, 0)" label="rgb(0, 0, 0)"></option>
              ...
              <option value="rgb(61, 20, 102)" label="rgb(61, 20, 102)"></option>
            </select>
        </span>
          <span class="ql-formats">
            <button class="ql-list" title="List"></button>
            <button class="ql-bullet" title="Bullet"></button>
            <select title="Text Alignment" class="ql-align" >
              <option selected>Gauche</option>
              <option value="center" label="Center"></option>
              <option value="right" label="Right"></option>
              <option value="justify" label="Justify"></option>
            </select>            
          </span> 
          <span class="ql-formats">
            <button aria-label="Link" class="ql-link"></button>
            <button aria-label="Image" class="ql-image"></button>
          </span>
        </p-header>
      </p-editor>

これがどのように見えるかです enter image description here

しかし、あなたが見ることができるようにql-listおよびql-bulletは表示されません。

私に何ができる ?

11
anais1477

これら2つのボタンのコードの違いに注意してください。

 <button class="ql-list" title="List"></button>
 <button class="ql-bullet" title="Bullet"></button>

エディターがレンダリングするときの実際のコード。あなたがしなければならないのは、トリックを行うであろうvalue属性のtitle属性を置き換えることです:

<button class="ql-list" value="ordered"></button>
<button class="ql-list" value="bullet"></button>

私がしたのは、primengが持っているフル機能のツールバーに戻り、右クリックして、正しく表示されなかったボタンのhtmlタグを調べて、それを表示するための正しいコードを取得することだけでした。

8
William Matias