/**
 * @class Ext.grid.cell.Widget
 * @extend Ext.grid.cell.Base
 * @xtype widgetcell
 *
 * This class is used for {@link Ext.grid.Grid grid} cells that contain a child
 * {@link Ext.Component} or {@link Ext.Widget}. This cell type is typically used by
 * specifying {@link Ext.grid.column.Widget} column type.
 *
 * {@link Ext.grid.Row Rows} create cells based on the {@link Ext.grid.column.Column#cell}
 * config. Application code would rarely create cells directly.
 */
 
/**
 * @cfg {Boolean} [forceWidth=false]
 * `true` to measure the available width of the cell and set that
 * width on the underlying widget. If `false`, the widget width will auto size.
 * @accessor
 */
 
/**
 * @cfg {Object} [widget=null] (required)
 * The config object for a {@link Ext.Component} or {@link Ext.Widget}.
 * @react-child
 */