egroupware/etemplate/js/et2_textbox.js
Andreas Stöckel 41787c36f3 - Reading readonly properties
- Added system for readonlys: Readonly is passed in constructor as third parameter. If a widget class is registerd with "[type]_ro" (see et2_textbox for example) this one is created
- Added new 'valueWidget' base class which introduces the 'value' attribute and implements auto loading from the content array
- Implemented readonly attribute for buttons and textboxes
2011-08-16 12:31:18 +00:00

109 lines
1.9 KiB
JavaScript

/**
* eGroupWare eTemplate2 - JS Textbox 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_inputWidget;
et2_valueWidget;
*/
/**
* Class which implements the "textbox" XET-Tag
*/
var et2_textbox = et2_inputWidget.extend({
attributes: {
"multiline": {
"name": "multiline",
"type": "boolean",
"default": false,
"description": "If true, the textbox is a multiline edit field."
}
},
init: function(_parent) {
this._super.apply(this, arguments);
this.input = null;
this.id = "";
this.createInputWidget();
},
createInputWidget: function() {
if (this.multiline)
{
this.input = $j(document.createElement("textarea"));
}
else
{
this.input = $j(document.createElement("input"));
}
this.input.addClass("et2_textbox");
this.setDOMNode(this.input[0]);
},
set_multiline: function(_value) {
if (_value != this.multiline)
{
this.multiline = _value;
this.createInputWidget();
// Write all settings again
this.update();
}
}
});
et2_register_widget(et2_textbox, ["textbox", "int", "float"]);
/**
* et2_textbox_ro is the dummy readonly implementation of the textbox.
*/
var et2_textbox_ro = et2_valueWidget.extend({
/**
* Ignore all more advanced attributes.
*/
attributes: {
"multiline": {
"ignore": true
}
},
init: function() {
this._super.apply(this, arguments);
this.value = "";
this.span = $j(document.createElement("span"))
.addClass("et2_textbox_ro");
this.setDOMNode(this.span[0]);
},
set_value: function(_value) {
this.value = _value;
this.span.text(_value);
}
});
et2_register_widget(et2_textbox_ro, ["textbox_ro", "int_ro", "float_ro"]);