:filename and :select support for form-dialog

This commit is contained in:
David Botton 2021-02-24 13:53:28 -05:00
parent affe3dd05e
commit da89ed8c0f

View file

@ -73,15 +73,16 @@
(alert-dialog obj fname))))
(defun on-dlg-form (obj)
(form-dialog obj "Please enter your information." '(("Title" "title" (("Mr." "mr")
("Mrs." "mrs")
("Ms." "ms")
("Other" "other")))
("Name" "name")
("Address" "address")
("City" "city")
("State" "st")
("Zip" "zip"))
(form-dialog obj "Please enter your information."
'(("Title" "title" :select (("Mr." "mr")
("Mrs." "mrs")
("Ms." "ms")
("Other" "other")))
("Name" "name")
("Address" "address")
("City" "city")
("State" "st")
("Zip" "zip"))
(lambda (results)
(alert-dialog obj results))
:height 550))