Skip to content

Commit

Permalink
Support databinding within jsonforms directive eclipsesource#32
Browse files Browse the repository at this point in the history
Support label attribute for controls eclipsesource#33
  • Loading branch information
edgarmueller committed Jun 26, 2015
1 parent 74f0e75 commit c864712
Show file tree
Hide file tree
Showing 16 changed files with 533 additions and 359 deletions.
58 changes: 50 additions & 8 deletions app/assets/db.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,59 @@
"users": [
{
"id": "5448b9ee5c00005c00060483",
"firstName": "Stefan",
"firstName": "Ana",
"height": 1.73,
"nationality": "DE"
"nationality": "AR",
"albums": [
{
"name": "El Groove De Tu Coraz�n",
"releaseYear": 2011
},
{
"name": "Beating PC",
"releaseYear": 2013
},
{
"name": "Don't Hide Be Wild",
"releaseYear": 2014
}
]
},
{
"id": "54732dbd5b0000fc0fc5190b",
"firstName": "John Doe",
"height": 1.69,
"nationality": "US"
"firstName": "Christian ",
"height": 1.85,
"nationality": "DE",
"albums": [
{
"name": "Pitch Rider Ep",
"releaseYear": 2011
}
]
},
{
"id": "54732f005b00004e12c5190c",
"firstName": "Gustav Gans",
"height": 1.92,
"nationality": "AT"
"firstName": "Rebolledo",
"height": 1.75,
"nationality": "MEX",
"albums": [
{
"name": "Guerrero",
"releaseYear": 2009
},
{
"name": "Bo Jack / Pitaya Frenes�",
"releaseYear": 2009
},
{
"name": "Desierto",
"releaseYear": 2010
},
{
"name": "Surf Smurf",
"releaseYear": 2014
}
]
},
{
"id": "54c63acb1803009383463bd0",
Expand All @@ -39,6 +77,10 @@
{
"name": "Kittin Calling 30' Mix",
"releaseYear": 2013
},
{
"name": "Momento Drive",
"releaseYear": 2014
}
]
}
Expand Down
1 change: 1 addition & 0 deletions app/embed-index.html
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
<script src="bower_components/angular-ui/build/angular-ui.js" type="text/javascript"></script>
<script src="bower_components/angular-ui-grid/ui-grid.js" type="text/javascript"></script>
<script src="bower_components/angular-ui-bootstrap-bower/ui-bootstrap-tpls.js" type="text/javascript"></script>
<script src="bower_components/angular-resource/angular-resource.min.js" type="text/javascript"></script>
<script src="bower_components/ui-utils/ui-utils.js" type="text/javascript"></script>

<script src="js/jsonforms.js" type="text/javascript"></script>
Expand Down
Loading

0 comments on commit c864712

Please sign in to comment.