23 lines
527 B
JavaScript
23 lines
527 B
JavaScript
'use strict';
|
|
|
|
var app = angular.module('jsonforms-intro');
|
|
app.value('UISchema',
|
|
{
|
|
"type": "HorizontalLayout",
|
|
"elements": [
|
|
{
|
|
"type": "Control",
|
|
"scope": { "$ref": "#/properties/id" }
|
|
},
|
|
{
|
|
"type": "Control",
|
|
"scope": { "$ref": "#/properties/name" }
|
|
},
|
|
{
|
|
"type": "Control",
|
|
"scope": { "$ref": "#/properties/price" }
|
|
},
|
|
]
|
|
}
|
|
);
|