mirror of
https://github.com/SuiteCRM/SuiteCRM-Core.git
synced 2025-09-04 10:14:13 +08:00
Add tinymce html field
- Add edit and detail mode implementation - Add tinymce config to field medatada - Add base tinymce ui configuration
This commit is contained in:
parent
3d844cc19c
commit
d98c6faf04
10 changed files with 378 additions and 3 deletions
|
@ -5,5 +5,31 @@ parameters:
|
|||
loading_display_delay: 900
|
||||
table_loading_display_delay: 800
|
||||
modal_buttons_collapse_breakpoint: 4
|
||||
tinymce:
|
||||
edit:
|
||||
base_url: './dist/tinymce'
|
||||
suffix: '.min'
|
||||
modelEvents: 'change'
|
||||
ignoreEvents: "onKeyDown,onKeyPress,onKeyUp,onSelectionChange"
|
||||
height: 500
|
||||
deprecation_warnings: false
|
||||
menubar: false
|
||||
plugins:
|
||||
- 'advlist autolink lists link image charmap print preview anchor'
|
||||
- 'searchreplace visualblocks code fullscreen'
|
||||
- 'insertdatetime media table paste code help wordcount'
|
||||
toolbar: 'undo redo | formatselect | bold italic backcolor | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | removeformat | help'
|
||||
toolbar_mode: 'floating'
|
||||
mobile:
|
||||
theme: 'mobile'
|
||||
detail:
|
||||
base_url: './dist/tinymce'
|
||||
suffix: '.min'
|
||||
deprecation_warnings: false
|
||||
readonly: true
|
||||
toolbar: false
|
||||
menubar: false
|
||||
statusbar: false
|
||||
inline: true
|
||||
navigation_max_module_recently_viewed: 5
|
||||
navigation_max_module_favorites: 5
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue