Object
This is the collection of Backbone models
that represent List Records from the context.
Available Methods
Kind: global function
Returns: Object
- List Records from the context.
Since: v0.0.1
Example
// undefined
getListRecords() // -> {}
// defined
// context: {
// attributes: {
// collection: { length: 20, models: Array(20), ... }
// }
// }
getListRecords() // -> returns Backbone.Collection -> { length: 20, models: Array(20), ... }
getListRecords().toJSON() // -> returns Array of records.
-> [{id: "...", name: "...", ...}, {id: "...", name: "...", ...}, ...]