mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-09 01:25:22 +01:00
68c7a5550e
- 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
115 lines
2.4 KiB
JavaScript
115 lines
2.4 KiB
JavaScript
/**
|
|
* eGroupWare eTemplate2 - JS Description 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 "description" XET-Tag
|
|
*/
|
|
var et2_description = et2_baseWidget.extend({
|
|
|
|
attributes: {
|
|
"value": {
|
|
"name": "Caption",
|
|
"type": "string",
|
|
"description": "Displayed text"
|
|
},
|
|
|
|
/**
|
|
* Options converted from the "options"-attribute.
|
|
*/
|
|
"font_style": {
|
|
"name": "Font Style",
|
|
"type": "string",
|
|
"description": "Style may be a compositum of \"b\" and \"i\" which " +
|
|
" renders the text bold and/or italic."
|
|
},
|
|
"href": {
|
|
"name": "Link Target",
|
|
"type": "string",
|
|
"description": "Link URL, empty if you don't wan't to display a link."
|
|
},
|
|
"activate_links": {
|
|
"name": "Replace URLs",
|
|
"type": "boolean",
|
|
"default": false,
|
|
"description": "If set, URLs in the text are automatically replaced " +
|
|
"by links"
|
|
},
|
|
"label_for": {
|
|
"name": "Label for widget",
|
|
"type": "string",
|
|
"description": "Marks the text as label for the given widget."
|
|
},
|
|
"extra_link_target": {
|
|
"name": "Link target",
|
|
"type": "string",
|
|
"default": "_self",
|
|
"description": "Link target descriptor"
|
|
},
|
|
"extra_link_popup": {
|
|
"name": "Popup",
|
|
"type": "string",
|
|
"description": "???"
|
|
},
|
|
"extra_link_title": {
|
|
"name": "Link Title",
|
|
"type": "string",
|
|
"description": "Link title which is displayed on mouse over."
|
|
}
|
|
},
|
|
|
|
legacyOptions: ["font_style", "href", "activate_links", "label_for",
|
|
"extra_link_target", "extra_link_popup", "extra_link_title"],
|
|
|
|
init: function(_parent) {
|
|
this._super.apply(this, arguments);
|
|
|
|
this.value = "";
|
|
this.font_style = "";
|
|
|
|
this.span = $j(document.createElement("span"))
|
|
.addClass("et2_label");
|
|
|
|
this.setDOMNode(this.span[0]);
|
|
},
|
|
|
|
set_value: function(_value, _force) {
|
|
if (_value != this.value || _force)
|
|
{
|
|
this.value = _value;
|
|
|
|
this.span.text(_value);
|
|
}
|
|
},
|
|
|
|
set_font_style: function(_value) {
|
|
if (_value != this.font_style)
|
|
{
|
|
this.font_style = _value;
|
|
|
|
this.span.toggleClass("et2_bold", _value.indexOf("b") >= 0);
|
|
this.span.toggleClass("et2_italic", _value.indexOf("i") >= 0);
|
|
}
|
|
}
|
|
|
|
});
|
|
|
|
et2_register_widget(et2_description, ["description", "label"]);
|
|
|
|
|