UNPKG
ucan-ext-js-kitchen-sink
Version:
latest (0.0.1)
0.0.1
my-ext-gen-app description for Ext JS app MyExtGenApp
www.sencha.com
ucan-ext-js-kitchen-sink
/
app
/
desktop
/
src
/
model
/
Solution.js
11 lines
(10 loc)
•
276 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
Ext.
define
(
'UCANSink.model.Solution'
, {
extend
:
'Ext.data.Model'
,
idProperty
:
'customId'
,
fields
: [ {
name
:
'id'
,
type
:
'auto'
,
defaultValue
:
null
}, {
name
:
'answer'
,
type
:
'auto'
}, {
name
:
'value'
,
type
:
'string'
}, {
name
:
'customId'
,
type
:
'auto'
} ] });