3
Look at the link
Would anyone know how to disable or remove the image upload button
3
Look at the link
Would anyone know how to disable or remove the image upload button
1
According to the documentation
Editor provides a default Toolbar with common options, to customize it define your Elements Inside the
header
element.
Translating
Editor provides a standard toolbar with common options, to customize it define its elements within the element
header
For example
<p-editor name="custom" [(ngModel)]="customtext" styleClass="editor-dimensions">
<p-header>
<span class="ql-formats">
<button class="ql-bold"></button>
<button class="ql-italic"></button>
<button class="ql-underline"></button>
<button class="ql-clean"></button>
</span>
</p-header>
</p-editor>
Will render as
If you want a higher level of customization, read the documentation on Quill Toolbar, which is what Primeng uses.
I even knew this suggestion that you gave, but what I really need and put all the buttons except the upload, would you know to modify the p-header to put everyone but the upload button? please.
i did not find in the documentation how to do this.
Browser other questions tagged angular
You are not signed in. Login or sign up in order to post.
Wladyband if you have any questions about how to do CSS Override tells me that I edit the answer in more detail. But just put this style sheet last, after you have already called all the others.
– hugocsl