X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/7a654f8d43fdb43d78b63d90528bed6e86b608cc..3789b528d8dd8aad4558e38e22d775bcab1cbd36:/src/grid/column/Boolean.js diff --git a/src/grid/column/Boolean.js b/src/grid/column/Boolean.js index 728e7ef0..078a7602 100644 --- a/src/grid/column/Boolean.js +++ b/src/grid/column/Boolean.js @@ -6,7 +6,7 @@ * * {@img Ext.grid.column.Boolean/Ext.grid.column.Boolean.png Ext.grid.column.Boolean grid column} * - * ## Code + * ## Code * Ext.create('Ext.data.Store', { * storeId:'sampleStore', * fields:[ @@ -26,24 +26,24 @@ * root: 'items' * } * } - * }); - * - * Ext.create('Ext.grid.Panel', { - * title: 'Boolean Column Demo', - * store: Ext.data.StoreManager.lookup('sampleStore'), - * columns: [ - * {text: 'Framework', dataIndex: 'framework', flex: 1}, - * { - * xtype: 'booleancolumn', - * text: 'Rocks', - * trueText: 'Yes', - * falseText: 'No', - * dataIndex: 'rocks'} - * ], - * height: 200, - * width: 400, - * renderTo: Ext.getBody() - * }); + * }); + * + * Ext.create('Ext.grid.Panel', { + * title: 'Boolean Column Demo', + * store: Ext.data.StoreManager.lookup('sampleStore'), + * columns: [ + * {text: 'Framework', dataIndex: 'framework', flex: 1}, + * { + * xtype: 'booleancolumn', + * text: 'Rocks', + * trueText: 'Yes', + * falseText: 'No', + * dataIndex: 'rocks'} + * ], + * height: 200, + * width: 400, + * renderTo: Ext.getBody() + * }); * * @xtype booleancolumn */