egroupware_official/etemplate/js/et2_inputWidget.js

132 lines
2.3 KiB
JavaScript
Raw Normal View History

/**
* eGroupWare eTemplate2 - JS Widget base class
*
* @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: et2_widget.js 36021 2011-08-07 13:43:46Z igel457 $
*/
"use strict";
/*egw:uses
jquery.jquery;
et2_baseWidget;
*/
/**
* Interface for all widgets which support returning a value
*/
var et2_IInput = new Interface({
/**
* getValue has to return the value of the input widget
*/
getValue: function() {},
/**
* Is dirty returns true if the value of the widget has changed since it
* was loaded.
*/
isDirty: function() {},
/**
* Causes the dirty flag to be reseted.
*/
resetDirty: function() {}
});
/**
* et2_inputWidget derrives from et2_simpleWidget and implements the IInput
* interface. When derriving from this class, call setDOMNode with an input
* DOMNode.
*/
2011-08-10 16:39:35 +02:00
var et2_inputWidget = et2_baseWidget.extend(et2_IInput, {
attributes: {
"value": {
"name": "Value",
"description": "The value of the widget",
"type": "string",
"default": et2_no_init
}
},
init: function() {
this._super.apply(this, arguments);
this._oldValue = "";
},
set_value: function(_value) {
this._oldValue = _value;
var node = this.getInputNode();
if (node)
{
$j(node).val(_value);
}
},
set_id: function(_value) {
this.id = _value;
// Set the id of the input node
var node = this.getInputNode();
if (node)
{
if (_value != "")
{
node.setAttribute("id", _value);
}
else
{
node.removeAttribute("id");
}
}
// Set the value for this element
var mgr = this.getArrayMgr("content");
if (_value != '' && mgr != null)
{
var val = mgr.getValueForID(this.id);
if (val !== null)
{
this.set_value(val);
}
}
},
get_value: function() {
return this.getValue();
},
getInputNode: function() {
return this.node;
},
getValue: function() {
var node = this.getInputNode();
if (node)
{
var val = $j(node).val();
return val;
}
return this._oldValue;
},
isDirty: function() {
return this._oldValue != this.getValue();
},
resetDirty: function() {
this._oldValue = this.getValue();
}
});