Ext.data.JsonP.Backgrid_Row({ "tagname": "class", "name": "Backgrid.Row", "extends": "Backbone.View", "mixins": [ ], "alternateClassNames": [ ], "aliases": { }, "singleton": false, "requires": [ ], "uses": [ ], "enum": null, "override": null, "inheritable": null, "inheritdoc": null, "meta": { }, "private": null, "id": "class-Backgrid.Row", "members": { "cfg": [ ], "property": [ { "name": "tagName", "tagname": "property", "owner": "Backgrid.Row", "meta": { }, "id": "property-tagName" } ], "method": [ { "name": "initialize", "tagname": "method", "owner": "Backgrid.Row", "meta": { }, "id": "method-initialize" }, { "name": "makeCell", "tagname": "method", "owner": "Backgrid.Row", "meta": { "protected": true }, "id": "method-makeCell" }, { "name": "remove", "tagname": "method", "owner": "Backgrid.Row", "meta": { "chainable": true }, "id": "method-remove" }, { "name": "render", "tagname": "method", "owner": "Backgrid.Row", "meta": { "chainable": true }, "id": "method-render" } ], "event": [ ], "css_var": [ ], "css_mixin": [ ] }, "linenr": 9, "files": [ { "filename": "row.js", "href": null } ], "html_meta": { }, "statics": { "cfg": [ ], "property": [ ], "method": [ ], "event": [ ], "css_var": [ ], "css_mixin": [ ] }, "component": false, "superclasses": [ "Backbone.View" ], "subclasses": [ "Backgrid.HeaderRow" ], "mixedInto": [ ], "parentMixins": [ ], "html": "

Hierarchy

Backbone.View
Backgrid.Row

Subclasses

Row is a simple container view that takes a model instance and a list of\ncolumn metadata describing how each of the model's attribute is to be\nrendered, and apply the appropriate cell to each attribute.

\n
Defined By

Properties

Backgrid.Row
: String
...
\n

Defaults to: "tr"

Defined By

Methods

Backgrid.Row
( options )
Initializes a row view instance. ...

Initializes a row view instance.

\n

Parameters

  • options : Object
    \n
    • columns : Backbone.Collection.<Backgrid.Column>|Array.<Backgrid.Column>|Array.<Object>

      Column metadata.

      \n
    • model : Backbone.Model

      The model instance to render.

      \n

Throws

  • TypeError

    If options.columns or options.model is undefined.

    \n
Backgrid.Row
( column, options ) : Backgrid.Cellprotected
Factory method for making a cell. ...

Factory method for making a cell. Used by initialize internally. Override\nthis to provide an appropriate cell instance for a custom Row subclass.

\n

Parameters

Returns

Backgrid.Row
( ) : Backgrid.Rowchainable
Clean up this row and its cells. ...

Clean up this row and its cells.

\n

Returns

Backgrid.Row
( ) : Backgrid.Rowchainable
Renders a row of cells for this row's model. ...

Renders a row of cells for this row's model.

\n

Returns

" });