| demos\outlook\email\inbox_data.sdf |
1 /** 2 * Define the inbox list of e-mails using the hierarchal format 3 * in order to easily specify the row information that will be used 4 * for the e-mail preview 5 */ 6 DataItem { 7 /* 8 * specify a value for root item. This value is not used by the table 9 * but it is stored and can be accessed programmatically via the getRoot() 10 * method. We will access it in our script 11 */ 12 value: "unread=3,node_name=Inbox,node_index=3,target=email.inbox.reader" 13 14 //now define the list of sub items with each item representing a row in the table 15 subItems { 16 { 17 value:<< July 23, 2007 18 JIDE Software introduces JIDE Desktop Application Framework 19 JIDE Desktop Application Framework 20 >> 21 linkedData: "1" 22 font { style: "bold" } 23 subItems { //the columns for this row 24 {icon: "resource:pim.icon.important" } 25 {icon: "resource:pim.icon.unread" } 26 {icon: "resource:pim.icon.attachment" } 27 { 28 value: "JIDE Software [sales@jidesoft.com]" 29 linkedData: "Don DeCoteau" 30 } 31 { 32 value: "JIDE Software introduces JIDE Desktop Application Framework" 33 linkedData: "data/jide.html" 34 } 35 {value: "Jul 23, 2007 06:04 AM" } 36 {value: "80KB" } 37 } 38 } 39 { 40 value:<< Dear DbVisualizer customer, 41 DbVisualizer 5.1 has been released. This version features numerous 42 enhancements and fixes and the following highlights some of them: 43 >> 44 linkedData: "1" 45 font { style: "bold" } 46 subItems { 47 {} 48 {icon: "resource:pim.icon.unread" } 49 {} 50 {value: "info@minq.se"; linkedData: "Don DeCoteau" } 51 {value: "DbVisualizer 5.1 released"; linkedData: "data/minq.html" } 52 {value: "Oct 10, 2006 12:10 PM" } 53 {value: "64KB" } 54 } 55 } 56 { 57 value:<< Join us at this year's Oracle Open World in San Francisco. 58 http: 59 Oct 22-26 2006 60 >> 61 linkedData: "1" 62 font { style: "bold" } 63 subItems { 64 {} 65 {icon: "resource:pim.icon.unread" } 66 {} 67 {value: "bdb@oss.oracle.com"; linkedData: "Don DeCoteau" } 68 { 69 value: "[Berkeley DB Announce] Berkeley DB at this year's Oracle Open World" 70 linkedData: "data/oracle.html" 71 } 72 {value: "Oct 11, 2006 09:08 AM" } 73 {value: "24KB" } 74 } 75 } 76 } 77 } 78 79