You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.6 KiB
53 lines
1.6 KiB
define([ |
|
"dojo/_base/declare", |
|
"dojo/_base/window", |
|
"dojo/dom-construct", |
|
"dijit/_Contained", |
|
"dijit/_WidgetBase", |
|
"dojo/has", |
|
"dojo/has!dojo-bidi?dojox/mobile/bidi/RoundRectCategory" |
|
], function(declare, win, domConstruct, Contained, WidgetBase, has, BidiRoundRectCategory){ |
|
|
|
// module: |
|
// dojox/mobile/RoundRectCategory |
|
|
|
var RoundRectCategory = declare(has("dojo-bidi") ? "dojox.mobile.NonBidiRoundRectCategory" : "dojox.mobile.RoundRectCategory", [WidgetBase, Contained], { |
|
// summary: |
|
// A category header for a rounded rectangle list. |
|
|
|
// label: String |
|
// A label of the category. If the label is not specified, |
|
// innerHTML is used as a label. |
|
label: "", |
|
|
|
// tag: String |
|
// A name of html tag to create as domNode. |
|
tag: "h2", |
|
|
|
/* internal properties */ |
|
|
|
// baseClass: String |
|
// The name of the CSS class of this widget. |
|
baseClass: "mblRoundRectCategory", |
|
|
|
buildRendering: function(){ |
|
var domNode = this.domNode = this.containerNode = this.srcNodeRef || domConstruct.create(this.tag); |
|
this.inherited(arguments); |
|
if(!this.label && domNode.childNodes.length === 1 && domNode.firstChild.nodeType === 3){ |
|
// if it has only one text node, regard it as a label |
|
this.label = domNode.firstChild.nodeValue; |
|
} |
|
}, |
|
|
|
_setLabelAttr: function(/*String*/label){ |
|
// summary: |
|
// Sets the category header text. |
|
// tags: |
|
// private |
|
this.label = label; |
|
this.domNode.innerHTML = this._cv ? this._cv(label) : label; |
|
} |
|
}); |
|
|
|
return has("dojo-bidi") ? declare("dojox.mobile.RoundRectCategory", [RoundRectCategory, BidiRoundRectCategory]) : RoundRectCategory; |
|
});
|
|
|