mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-09 01:25:22 +01:00
74 lines
1.3 KiB
JavaScript
74 lines
1.3 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;
|
|
*/
|
|
|
|
/**
|
|
* 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"]);
|
|
|