From 99c80073680313669268895566d2b7d4834aaa2a Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Tue, 3 Nov 2020 16:22:01 +0800 Subject: [PATCH] Roo/bootstrap/CardHeader.js --- Roo/bootstrap/CardHeader.js | 48 ++++--------------------------------- 1 file changed, 5 insertions(+), 43 deletions(-) diff --git a/Roo/bootstrap/CardHeader.js b/Roo/bootstrap/CardHeader.js index 39554575a4..8195dbfddb 100644 --- a/Roo/bootstrap/CardHeader.js +++ b/Roo/bootstrap/CardHeader.js @@ -9,12 +9,6 @@ * @class Roo.bootstrap.CardHeader * @extends Roo.bootstrap.Element * Bootstrap Element class - * @cfg {String} html contents of the element - * @cfg {String} tag tag of the element - * @cfg {String} cls class of the element - * @cfg {Boolean} preventDefault (true|false) default false - * @cfg {Boolean} clickable (true|false) default false - * * @constructor * Create a new Element * @param {Object} config The config object @@ -38,51 +32,19 @@ Roo.bootstrap.Element = function(config){ Roo.extend(Roo.bootstrap.Element, Roo.bootstrap.Component, { tag: 'div', - cls: '', - html: '', - preventDefault: false, - clickable: false, - container_method : getCardHeader + container_method : 'getCardHeader', - getAutoCreate : function(){ + getAutoCreate : function() { var cfg = { - tag: this.tag, - // cls: this.cls, double assign in parent class Component.js :: onRender - html: this.html + tag: 'div', + cls : 'card-header' }; return cfg; - }, - - initEvents: function() - { - Roo.bootstrap.Element.superclass.initEvents.call(this); - - if(this.clickable){ - this.el.on('click', this.onClick, this); - } - - }, - - onClick : function(e) - { - if(this.preventDefault){ - e.preventDefault(); - } - - this.fireEvent('click', this, e); - }, + } - getValue : function() - { - return this.el.dom.innerHTML; - }, - setValue : function(value) - { - this.el.dom.innerHTML = value; - } }); -- 2.39.2