REBOL [ Title: "Demo 3 - List view with inline editing" Short: "Inline Editing" Author: ["Henrik Mikael Kristensen"] Copyright: "2006 - HMK Design" Filename: %demo03.r Version: 0.0.1 Created: 25-Feb-2006 Date: 25-Feb-2006 License: { BSD (www.opensource.org/licenses/bsd-license.php) Use at your own risk. } Purpose: { List View with inline editing fields. Double-click a row to edit it. } History: [] Keywords: [inline-edit sorting] ] do http://www.hmkdesign.dk/rebol/list-view/list-view.r view layout [ text bold {List view with inline editing} text {Double-click a row to edit it.} text {Focus is placed over the cell you double-click.} text {Data is resorted on the fly, if sorting is selected.} li: list-view 400x400 with [ editable?: true data: [ ["Inline editing" "is" "Fun!"] ["AltME" "is" "also fun"] ["123" "456" "789"] ] ] ]