UNPKG

dojox

Version:

Dojo eXtensions, a rollup of many useful sub-projects and varying states of maturity – from very stable and robust, to alpha and experimental. See individual projects contain README files for details.

54 lines (44 loc) 1.64 kB
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; });