Skip to content

Instantly share code, notes, and snippets.

@chrishein
Created August 16, 2011 14:59
Show Gist options
  • Save chrishein/1149291 to your computer and use it in GitHub Desktop.
Save chrishein/1149291 to your computer and use it in GitHub Desktop.
JRapid BI simple example
<entity label="Store" menu="Menu" name="Store">
<property display="primary" label="Name" name="name"/>
</entity>
<entity crosstab="crosstab" label="Sale" menu="Menu" name="Sale">
<property dimension="row" display="primary" label="Sale Date" name="saleDate" type="date"/>
<property dimension="column" display="primary" entity="Store" label="Store" name="store"/>
<property display="primary" label="Total Amount" name="totalAmount" type="double"/>
<property childproperty="sale" collection="set" embedded="inline" entity="SaleDetail" extendable="extendable" label="Detail" name="lines"/>
</entity>
<entity label="Product" menu="Menu" name="Product">
<property display="primary" label="Name" name="name"/>
</entity>
<entity label="Sale Detail" name="SaleDetail">
<property entity="Sale" label="Sale" name="sale"/>
<property label="Quantity" name="quantity" type="integer"/>
<property entity="Product" label="Product" name="product"/>
<property label="Price" name="price" type="double"/>
</entity>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment