16 lines
306 B
JavaScript
16 lines
306 B
JavaScript
/**
|
|
* @private - To be made a sample
|
|
*/
|
|
Ext.define('Ext.dataview.ListItemHeader', {
|
|
extend: 'Ext.Component',
|
|
xtype : 'listitemheader',
|
|
|
|
config: {
|
|
/**
|
|
* @cfg
|
|
* @inheritdoc
|
|
*/
|
|
baseCls: Ext.baseCSSPrefix + 'list-header',
|
|
docked: 'top'
|
|
}
|
|
}); |