X-Git-Url: http://git.roojs.org/?p=roojs1;a=blobdiff_plain;f=docs%2Fsrc%2FRoo_bootstrap_nav_Group.js.html;fp=docs%2Fsrc%2FRoo_bootstrap_NavGroup.js.html;h=6a028ea8974da251862021314ffcb92f770ad04a;hp=003a0c0333a2114c39925a3afc2de22427d4967b;hb=e01802ac69da0ec0c9ccecc295beff82c1779f68;hpb=0fa7894b7489284160ff14afdca7b6911983357f diff --git a/docs/src/Roo_bootstrap_NavGroup.js.html b/docs/src/Roo_bootstrap_nav_Group.js.html similarity index 92% rename from docs/src/Roo_bootstrap_NavGroup.js.html rename to docs/src/Roo_bootstrap_nav_Group.js.html index 003a0c0333..6a028ea897 100644 --- a/docs/src/Roo_bootstrap_NavGroup.js.html +++ b/docs/src/Roo_bootstrap_nav_Group.js.html @@ -1,4 +1,4 @@ -Roo/bootstrap/NavGroup.js/* +Roo/bootstrap/nav/Group.js/* * - LGPL * * nav group @@ -6,8 +6,9 @@ */ /** - * @class Roo.bootstrap.NavGroup + * @class Roo.bootstrap.nav.Group * @extends Roo.bootstrap.Component + * @children Roo.bootstrap.nav.Item * Bootstrap NavGroup class * @cfg {String} align (left|right) * @cfg {Boolean} inverse @@ -20,16 +21,16 @@ * @param {Object} config The config object */ -Roo.bootstrap.NavGroup = function(config){ - Roo.bootstrap.NavGroup.superclass.constructor.call(this, config); +Roo.bootstrap.nav.Group = function(config){ + Roo.bootstrap.nav.Group.superclass.constructor.call(this, config); this.navItems = []; - Roo.bootstrap.NavGroup.register(this); + Roo.bootstrap.nav.Group.register(this); this.addEvents({ /** * @event changed * Fires when the active item changes - * @param {Roo.bootstrap.NavGroup} this + * @param {Roo.bootstrap.nav.Group} this * @param {Roo.bootstrap.Navbar.Item} selected The item selected * @param {Roo.bootstrap.Navbar.Item} prev The previously selected item */ @@ -38,7 +39,7 @@ }; -Roo.extend(Roo.bootstrap.NavGroup, Roo.bootstrap.Component, { +Roo.extend(Roo.bootstrap.nav.Group, Roo.bootstrap.Component, { align: '', inverse: false, @@ -52,7 +53,7 @@ getAutoCreate : function() { - var cfg = Roo.apply({}, Roo.bootstrap.NavGroup.superclass.getAutoCreate.call(this)); + var cfg = Roo.apply({}, Roo.bootstrap.nav.Group.superclass.getAutoCreate.call(this)); cfg = { tag : 'ul', @@ -118,7 +119,7 @@ }, /** * sets the active Navigation item - * @param {Roo.bootstrap.NavItem} the new current navitem + * @param {Roo.bootstrap.nav.Item} the new current navitem */ setActiveItem : function(item) { @@ -142,7 +143,7 @@ }, /** * gets the active Navigation item - * @return {Roo.bootstrap.NavItem} the current navitem + * @return {Roo.bootstrap.nav.Item} the current navitem */ getActive : function() { @@ -175,14 +176,14 @@ }, /** * adds a Navigation item - * @param {Roo.bootstrap.NavItem} the navitem to add + * @param {Roo.bootstrap.nav.Item} the navitem to add */ addItem : function(cfg) { if (this.form && Roo.bootstrap.version == 4) { cfg.tag = 'div'; } - var cn = new Roo.bootstrap.NavItem(cfg); + var cn = new Roo.bootstrap.nav.Item(cfg); this.register(cn); cn.parentId = this.id; cn.onRender(this.el, null); @@ -190,7 +191,7 @@ }, /** * register a Navigation item - * @param {Roo.bootstrap.NavItem} the navitem to add + * @param {Roo.bootstrap.nav.Item} the navitem to add */ register : function(item) { @@ -267,12 +268,12 @@ }); -Roo.apply(Roo.bootstrap.NavGroup, { +Roo.apply(Roo.bootstrap.nav.Group, { groups: {}, /** * register a Navigation Group - * @param {Roo.bootstrap.NavGroup} the navgroup to add + * @param {Roo.bootstrap.nav.Group} the navgroup to add */ register : function(navgrp) { @@ -282,12 +283,12 @@ /** * fetch a Navigation Group based on the navigation ID * @param {string} the navgroup to add - * @returns {Roo.bootstrap.NavGroup} the navgroup + * @returns {Roo.bootstrap.nav.Group} the navgroup */ get: function(navId) { if (typeof(this.groups[navId]) == 'undefined') { return false; - //this.register(new Roo.bootstrap.NavGroup({ navId : navId })); + //this.register(new Roo.bootstrap.nav.Group({ navId : navId })); } return this.groups[navId] ; }