+++ title = "Click to Edit" template = "demo.html" +++ The click to edit pattern provides a way to offer inline editing of all or part of a record without a page refresh. * This pattern starts with a UI that shows the details of a contact. The div has a button that will get the editing UI for the contact from `/contact/1/edit` ```html
: Joe
: Blow
: joe@blow.com
``` * This returns a form that can be used to edit the contact ```html
``` * The form issues a `PUT` back to `/contact/1`, following the usual REST-ful pattern. {{ demoenv() }}