Changes between Version 15 and Version 16 of MolgenisAddressBookExample
- Timestamp:
- 2009-08-23T18:48:46+02:00 (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
MolgenisAddressBookExample
v15 v16 8 8 [[Image(address-book-screenshot.JPG)]] 9 9 10 1. Create the data model XML[[BR]] 10 == 1. Create the data model XML[[BR]] == 11 11 Create a new xml file ‘addressbook_db.xml’ in the root of you application. This file will contain the MOLGENIS model. Use the following template: 12 12 … … 20 20 }}} 21 21 22 1. Add a “Contact” data type. Data types are called ‘entity’ in MOLGENIS: 22 == 2. Add a “Contact” data type. == 23 Data types are called ‘entity’ in MOLGENIS: 23 24 {{{ 24 25 #!xml … … 30 31 }}} 31 32 32 33 == 3. Add properties to the “Contact” data type. == 34 Properties are called ‘field’ in MOLGENIS. 35 * A unique, automatic numeric identifier field that MOLGENIS will use to refer contacts. 36 {{{ 37 #!xml 38 <field name="contact_id" type="autoid"/> 39 }}}