2011-08-07 15:43:46 +02:00
/ * *
* 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" ;
/ * e g w : u s e s
jquery . jquery ;
2011-08-24 12:18:07 +02:00
et2 _core _inputWidget ;
et2 _core _valueWidget ;
2011-08-07 15:43:46 +02:00
* /
/ * *
* Class which implements the "textbox" XET - Tag
* /
2011-08-10 17:15:51 +02:00
var et2 _textbox = et2 _inputWidget . extend ( {
2011-08-07 15:43:46 +02:00
2011-08-10 16:36:31 +02:00
attributes : {
"multiline" : {
"name" : "multiline" ,
"type" : "boolean" ,
"default" : false ,
"description" : "If true, the textbox is a multiline edit field."
2011-08-16 19:02:09 +02:00
} ,
"size" : {
"name" : "Size" ,
"type" : "integer" ,
"default" : et2 _no _init ,
"description" : "Field width"
2011-08-18 00:56:49 +02:00
} ,
2012-05-08 22:27:38 +02:00
"maxlength" : {
2012-03-27 01:27:53 +02:00
"name" : "Maximum length" ,
"type" : "integer" ,
"default" : et2 _no _init ,
"description" : "Maximum number of characters allowed"
} ,
2011-08-26 01:39:34 +02:00
"blur" : {
"name" : "Placeholder" ,
"type" : "string" ,
"default" : "" ,
"description" : "This text get displayed if an input-field is empty and does not have the input-focus (blur). It can be used to show a default value or a kind of help-text."
} ,
2011-08-18 00:56:49 +02:00
// These for multi-line
"rows" : {
"name" : "Rows" ,
"type" : "integer" ,
2011-08-19 18:39:28 +02:00
"default" : - 1 ,
2011-08-18 00:56:49 +02:00
"description" : "Multiline field height - better to use CSS"
} ,
"cols" : {
"name" : "Size" ,
"type" : "integer" ,
2011-08-19 18:39:28 +02:00
"default" : - 1 ,
2011-08-18 00:56:49 +02:00
"description" : "Multiline field width - better to use CSS"
2011-08-26 11:58:25 +02:00
}
2011-08-10 16:36:31 +02:00
} ,
2011-08-07 15:43:46 +02:00
2012-05-08 22:27:38 +02:00
legacyOptions : [ "size" , "maxlength" ] ,
2012-03-27 01:27:53 +02:00
2011-08-24 12:05:52 +02:00
init : function ( ) {
2011-08-07 15:43:46 +02:00
this . _super . apply ( this , arguments ) ;
2011-08-10 16:36:31 +02:00
this . input = null ;
this . createInputWidget ( ) ;
2011-08-07 15:43:46 +02:00
} ,
2011-08-10 16:36:31 +02:00
createInputWidget : function ( ) {
2011-08-19 18:00:44 +02:00
if ( this . options . multiline || this . options . rows > 1 || this . options . cols > 1 )
2011-08-07 15:43:46 +02:00
{
2011-08-19 18:39:28 +02:00
this . input = $j ( document . createElement ( "textarea" ) ) ;
if ( this . options . rows > 0 )
{
this . input . attr ( "rows" , this . options . rows ) ;
}
if ( this . options . cols > 0 )
{
this . input . attr ( "cols" , this . options . cols ) ;
}
2011-08-07 15:43:46 +02:00
}
2011-08-10 16:36:31 +02:00
else
{
this . input = $j ( document . createElement ( "input" ) ) ;
2012-06-26 22:37:58 +02:00
if ( this . options . type == "passwd" ) {
this . input . attr ( "type" , "password" ) ;
}
2011-08-10 16:36:31 +02:00
}
2011-09-27 02:16:00 +02:00
if ( this . options . size ) {
this . set _size ( this . options . size ) ;
2011-08-16 19:02:09 +02:00
}
2011-09-27 02:16:00 +02:00
if ( this . options . blur ) {
this . set _blur ( this . options . blur ) ;
2011-08-26 01:39:34 +02:00
}
2011-08-10 16:36:31 +02:00
this . input . addClass ( "et2_textbox" ) ;
this . setDOMNode ( this . input [ 0 ] ) ;
2011-08-07 15:43:46 +02:00
} ,
2011-09-27 02:16:00 +02:00
getValue : function ( )
{
if ( this . options . blur && this . input . val ( ) == this . options . blur ) return "" ;
return this . _super . apply ( this , arguments ) ;
} ,
2011-08-18 00:56:49 +02:00
2011-08-16 19:02:09 +02:00
/ * *
* Set input widget size
* @ param _size Rather arbitrary size units , approximately characters
* /
set _size : function ( _size ) {
if ( typeof _size != 'undefined' && _size != this . input . attr ( "size" ) )
{
this . size = _size ;
this . input . attr ( "size" , this . size ) ;
}
2011-08-26 01:39:34 +02:00
} ,
2012-03-27 01:27:53 +02:00
/ * *
* Set maximum characters allowed
* @ param _size Max characters allowed
* /
2012-05-08 22:27:38 +02:00
set _maxlength : function ( _size ) {
2012-03-27 01:27:53 +02:00
if ( typeof _size != 'undefined' && _size != this . input . attr ( "maxlength" ) )
{
this . maxLength = _size ;
this . input . attr ( "maxLength" , this . maxLength ) ;
}
} ,
2011-08-26 01:39:34 +02:00
set _blur : function ( _value ) {
if ( _value ) {
2012-06-13 18:58:12 +02:00
this . input . attr ( "placeholder" , _value + "" ) ; // HTML5
2011-08-26 01:39:34 +02:00
if ( ! this . input [ 0 ] . placeholder ) {
// Not HTML5
if ( this . input . val ( ) == "" ) this . input . val ( this . options . blur ) ;
this . input . focus ( this , function ( e ) {
if ( e . data . input . val ( ) == e . data . options . blur ) e . data . input . val ( "" ) ;
} ) . blur ( this , function ( e ) {
if ( e . data . input . val ( ) == "" ) e . data . input . val ( e . data . options . blur ) ;
} ) ;
}
} else {
this . input . removeAttr ( "placeholder" ) ;
}
2011-08-16 19:02:09 +02:00
}
2011-08-07 15:43:46 +02:00
} ) ;
2012-06-26 22:37:58 +02:00
et2 _register _widget ( et2 _textbox , [ "textbox" , "passwd" ] ) ;
2011-08-07 15:43:46 +02:00
2011-08-16 14:31:18 +02:00
/ * *
* et2 _textbox _ro is the dummy readonly implementation of the textbox .
* /
2011-10-18 18:04:47 +02:00
var et2 _textbox _ro = et2 _valueWidget . extend ( [ et2 _IDetachedDOM ] , {
2011-08-16 14:31:18 +02:00
/ * *
* 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 ;
2011-10-07 18:58:36 +02:00
if ( ! _value ) _value = "" ;
2011-08-16 14:31:18 +02:00
this . span . text ( _value ) ;
2011-10-18 18:04:47 +02:00
} ,
/ * *
* Code for implementing et2 _IDetachedDOM
* /
getDetachedAttributes : function ( _attrs )
{
_attrs . push ( "value" ) ;
} ,
getDetachedNodes : function ( )
{
return [ this . span [ 0 ] ] ;
} ,
setDetachedAttributes : function ( _nodes , _values )
{
this . span = jQuery ( _nodes [ 0 ] ) ;
if ( typeof _values [ "value" ] != 'undefined' )
{
this . set _value ( _values [ "value" ] ) ;
}
2011-08-16 14:31:18 +02:00
}
} ) ;
2012-03-05 17:53:52 +01:00
et2 _register _widget ( et2 _textbox _ro , [ "textbox_ro" , "int_ro" , "integer_ro" , "float_ro" ] ) ;
2011-08-16 14:31:18 +02:00