fordprefect
14 Jun 2012, 8:34 AM
Hi,
I have a model that looks like this:
Ext.define('Canvas.model.CanvasObjectModel', {
extend: 'Ext.data.Model',
idProperty: 'CanvasId',
fields: [{
name: 'CanvasId',
type: 'int'
},
{
name: 'CanvasObjectId',
type: 'int'
}
});
Basically I need to hold more than one 'CanvasObjectId', but don't see a type to hold a list. Is there a way where I can have many ObjectId's in this model?
Thanks
I have a model that looks like this:
Ext.define('Canvas.model.CanvasObjectModel', {
extend: 'Ext.data.Model',
idProperty: 'CanvasId',
fields: [{
name: 'CanvasId',
type: 'int'
},
{
name: 'CanvasObjectId',
type: 'int'
}
});
Basically I need to hold more than one 'CanvasObjectId', but don't see a type to hold a list. Is there a way where I can have many ObjectId's in this model?
Thanks