REBOL [ Title: "Demo 9 - Row Actions" Short: "Row Actions" Author: ["Henrik Mikael Kristensen"] Copyright: "2006 - HMK Design" Filename: %demo09.r Version: 0.0.1 Created: 26-Mar-2006 Date: 26-Mar-2006 License: { BSD (www.opensource.org/licenses/bsd-license.php) Use at your own risk. } Purpose: { List View with row actions } History: [] Keywords: [actions] ] do http://www.hmkdesign.dk/rebol/list-view/list-view.r view layout [ text bold {List view with row actions} text {Manipulate each cell face according to any kind of data} li: list-view with [ data-columns: [age sex height] data: [ [1 2 3] [4 5 6] [7 8 9] [10 11 12] [13 14 15] [16 17 18] [19 20 21] [22 23 24] [25 26 27] [28 29 30] [31 32 33] [34 35 36] [37 38 39] [40 41 42] [43 44 45] [46 47 48] ] row-action: [ cell/font/color: either find [4 16 19 22] age [red][black] cell/font/style: either find [4 16 19 22] age ['bold][none] cell/font/align: either cell/text > 23 ['center]['left] cells/age/color: white / square-root square-root age ] ] ]