X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/6746dc89c47ed01b165cc1152533605f97eb8e8d..f562e4c6e5fac7bcb445985b99acbea4d706e6f0:/src/grid/column/Boolean.js diff --git a/src/grid/column/Boolean.js b/src/grid/column/Boolean.js index b58b32ce..e9285f41 100644 --- a/src/grid/column/Boolean.js +++ b/src/grid/column/Boolean.js @@ -13,14 +13,10 @@ If you are unsure which license is appropriate for your use, please contact the */ /** - * @class Ext.grid.column.Boolean - * @extends Ext.grid.column.Column - *

A Column definition class which renders boolean data fields. See the {@link Ext.grid.column.Column#xtype xtype} - * config option of {@link Ext.grid.column.Column} for more details.

+ * A Column definition class which renders boolean data fields. See the {@link Ext.grid.column.Column#xtype xtype} + * config option of {@link Ext.grid.column.Column} for more details. * - * {@img Ext.grid.column.Boolean/Ext.grid.column.Boolean.png Ext.grid.column.Boolean grid column} - * - * ## Code + * @example * Ext.create('Ext.data.Store', { * storeId:'sampleStore', * fields:[ @@ -28,10 +24,10 @@ If you are unsure which license is appropriate for your use, please contact the * {name: 'rocks', type: 'boolean'} * ], * data:{'items':[ - * {"framework":"Ext JS 4", "rocks":true}, - * {"framework":"Sencha Touch", "rocks":true}, - * {"framework":"Ext GWT", "rocks":true}, - * {"framework":"Other Guys", "rocks":false} + * { 'framework': "Ext JS 4", 'rocks': true }, + * { 'framework': "Sencha Touch", 'rocks': true }, + * { 'framework': "Ext GWT", 'rocks': true }, + * { 'framework': "Other Guys", 'rocks': false } * ]}, * proxy: { * type: 'memory', @@ -46,13 +42,14 @@ If you are unsure which license is appropriate for your use, please contact the * title: 'Boolean Column Demo', * store: Ext.data.StoreManager.lookup('sampleStore'), * columns: [ - * {text: 'Framework', dataIndex: 'framework', flex: 1}, + * { text: 'Framework', dataIndex: 'framework', flex: 1 }, * { * xtype: 'booleancolumn', * text: 'Rocks', * trueText: 'Yes', * falseText: 'No', - * dataIndex: 'rocks'} + * dataIndex: 'rocks' + * } * ], * height: 200, * width: 400, @@ -66,20 +63,19 @@ Ext.define('Ext.grid.column.Boolean', { /** * @cfg {String} trueText - * The string returned by the renderer when the column value is not falsey (defaults to 'true'). + * The string returned by the renderer when the column value is not falsey. */ trueText: 'true', /** * @cfg {String} falseText - * The string returned by the renderer when the column value is falsey (but not undefined) (defaults to - * 'false'). + * The string returned by the renderer when the column value is falsey (but not undefined). */ falseText: 'false', /** * @cfg {String} undefinedText - * The string returned by the renderer when the column value is undefined (defaults to ' '). + * The string returned by the renderer when the column value is undefined. */ undefinedText: ' ',