egroupware_official/etemplate/js/et2_box.js
Andreas Stöckel 68c7a5550e - Styled button a little bit
- Added test for textbox
- Added baseWidget and inputWidget classes
- Implemented attribute system
- Implemented statustext as a test for the attribute system
- Ported csv_split function to JS
- Implemented system for the legacy options
- Added function for iterating over the widget tree
2011-08-10 14:36:31 +00:00

38 lines
693 B
JavaScript

/**
* eGroupWare eTemplate2 - JS Box object
*
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
* @package etemplate
* @subpackage api
* @link http://www.egroupware.org
* @author Andreas Stöckel
* @copyright Stylite 2011
* @version $Id$
*/
"use strict";
/*egw:uses
jquery.jquery;
et2_baseWidget;
*/
/**
* Class which implements the hbox and vbox tag
*/
var et2_box = et2_baseWidget.extend({
init: function(_parent, _type) {
this._super.apply(this, arguments);
this.div = $j(document.createElement("div"))
.addClass("et2_" + _type);
this.setDOMNode(this.div[0]);
}
});
et2_register_widget(et2_box, ["hbox", "vbox"]);