Cara Menampilkan CKEditor pada Input Panel Type field/content
Custom?
#187
Answered
by
taufik-nurrohman
yuliakbard
asked this question in
Q&A
-
Kang, bagaimana cara menampilkan CKEditor pada input panel type field/content custom? |
Beta Was this translation helpful? Give feedback.
Answered by
taufik-nurrohman
Feb 5, 2022
Replies: 1 comment 7 replies
-
Kalau sudah pakai ekstensi CKEditor sebenarnya cukup mengubah tipe bidang dari [
'type' => 'fields',
'lot' => [
// Sebagai area teks biasa
0 => [
'type' => 'content', // atau `field/content`
'value' => 'Test value.',
'stack' => 10
],
// Sebagai area WYSIWYG
1 => [
'type' => 'c-k-editor.4', // atau `field/c-k-editor.4`
'value' => 'Test value.',
'stack' => 20
]
]
] |
Beta Was this translation helpful? Give feedback.
7 replies
Answer selected by
yuliakbard
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Kalau sudah pakai ekstensi CKEditor sebenarnya cukup mengubah tipe bidang dari
content
menjadic-k-editor
saja: