I'm trying to modify the editable-list widget so that each entry has two slots, one for an account name, the second for an amount. Here's a mock-up of what I'm after visually (made with GIMP):
I'm able to create a group widget which is close:
(defvar playground-group) (make-local-variable 'playground-group) (setq playground-group (widget-convert 'group (widget-convert 'editable-field :format "%v" :size 50) (widget-convert 'item :value "" :format " %v ") (widget-convert 'editable-field :format "%v" :size 5))) (defvar playground-posting) (make-local-variable 'playground-posting) (setq playground-posting (widget-create playground-group)) However, it's not clear to me how I could replace the editable-field within an editable-list with the posting widget. I've read through the manual a few times and I'm not sure what's needed. Short of looking through the source for the editable-list widget, any advice for next steps?
