mirror of
https://github.com/rabbibotton/clog.git
synced 2025-12-16 07:10:57 -08:00
add convert to div for html block
This commit is contained in:
parent
2028bb2d7a
commit
3d4f354093
1 changed files with 15 additions and 2 deletions
|
|
@ -332,10 +332,23 @@
|
|||
nil))))
|
||||
|
||||
(defparameter *props-raw-contents*
|
||||
`((:name "html contents"
|
||||
`((:name "commands"
|
||||
:setup ,(lambda (control td1 td2)
|
||||
(declare (ignore td1))
|
||||
(let ((d1 (create-text-area td2 :value (escape-string (attribute control "data-original-html") :html t))))
|
||||
(let ((exp (create-button td2 :content "convert to div")))
|
||||
(set-on-click exp (lambda (obj)
|
||||
(setf (attribute control "data-clog-type") "div")
|
||||
(remove-attribute control "data-original-html")
|
||||
(remove-attribute control "data-clog-composite-control")
|
||||
(clog-web-alert obj
|
||||
"Convert to Div"
|
||||
"Save and reload panel to access child controls."
|
||||
:color-class "w3-yellow"))))))
|
||||
(:name "html contents"
|
||||
:setup ,(lambda (control td1 td2)
|
||||
(declare (ignore td1))
|
||||
(let ((app (connection-data-item td1 "builder-app-data"))
|
||||
(d1 (create-text-area td2 :value (escape-string (attribute control "data-original-html") :html t))))
|
||||
(set-on-change d1 (lambda (obj)
|
||||
(declare (ignore obj))
|
||||
(setf (attribute control "data-original-html") (value d1))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue