mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 17:14:44 +01:00
Get custom selectbox options working
This commit is contained in:
parent
0700876775
commit
cf75387f56
@ -111,7 +111,7 @@ var et2_customfields_list = et2_DOMWidget.extend([et2_IDetachedDOM], {
|
|||||||
var attrs = {
|
var attrs = {
|
||||||
'id': field_name,
|
'id': field_name,
|
||||||
'statustext': field.help,
|
'statustext': field.help,
|
||||||
'required': field.needed
|
'required': field.needed,
|
||||||
};
|
};
|
||||||
if(this[setup_function]) {
|
if(this[setup_function]) {
|
||||||
this[setup_function].call(this, field_name, field, attrs);
|
this[setup_function].call(this, field_name, field, attrs);
|
||||||
@ -129,6 +129,7 @@ var et2_customfields_list = et2_DOMWidget.extend([et2_IDetachedDOM], {
|
|||||||
.appendTo(row);
|
.appendTo(row);
|
||||||
this.rows[field_name] = cf[0];
|
this.rows[field_name] = cf[0];
|
||||||
}
|
}
|
||||||
|
|
||||||
// No label on the widget itself
|
// No label on the widget itself
|
||||||
delete(attrs.label);
|
delete(attrs.label);
|
||||||
|
|
||||||
@ -204,7 +205,7 @@ var et2_customfields_list = et2_DOMWidget.extend([et2_IDetachedDOM], {
|
|||||||
attrs.size = field.len;
|
attrs.size = field.len;
|
||||||
},
|
},
|
||||||
_setup_select: function(field_name, field, attrs) {
|
_setup_select: function(field_name, field, attrs) {
|
||||||
attrs.sel_options = field.values;
|
attrs.select_options = field.values;
|
||||||
},
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -228,7 +229,7 @@ var et2_customfields_list = et2_DOMWidget.extend([et2_IDetachedDOM], {
|
|||||||
var value = _values["value"][this.prefix + field_name] ? _values["value"][this.prefix + field_name] : null;
|
var value = _values["value"][this.prefix + field_name] ? _values["value"][this.prefix + field_name] : null;
|
||||||
if(this.widgets[field_name].implements( et2_IDetachedDOM))
|
if(this.widgets[field_name].implements( et2_IDetachedDOM))
|
||||||
{
|
{
|
||||||
widget_values = {"value": value};
|
var widget_values = {"value": value};
|
||||||
this.widgets[field_name].setDetachedAttributes(this.widgets[field_name].getDetachedNodes(), widget_values);
|
this.widgets[field_name].setDetachedAttributes(this.widgets[field_name].getDetachedNodes(), widget_values);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
@ -80,7 +80,12 @@ var et2_selectbox = et2_inputWidget.extend({
|
|||||||
if(this.getArrayMgr("sel_options"))
|
if(this.getArrayMgr("sel_options"))
|
||||||
{
|
{
|
||||||
var content_options = this.getArrayMgr("sel_options").getEntry(this.id);
|
var content_options = this.getArrayMgr("sel_options").getEntry(this.id);
|
||||||
if(content_options) _attrs["select_options"] = jQuery.merge(_attrs["select_options"],content_options);
|
if(_attrs["select_options"] && content_options)
|
||||||
|
{
|
||||||
|
_attrs["select_options"] = jQuery.merge(_attrs["select_options"],content_options);
|
||||||
|
} else if (content_options) {
|
||||||
|
_attrs["select_options"] = content_options;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Check whether the options entry was found, if not read it from the
|
// Check whether the options entry was found, if not read it from the
|
||||||
@ -105,7 +110,7 @@ var et2_selectbox = et2_inputWidget.extend({
|
|||||||
|
|
||||||
var option = $j(document.createElement("option"))
|
var option = $j(document.createElement("option"))
|
||||||
.attr("value", _value)
|
.attr("value", _value)
|
||||||
.text(_label);
|
.text(_label+"");
|
||||||
|
|
||||||
if (typeof _title != "undefined" && _title)
|
if (typeof _title != "undefined" && _title)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user