forked from extern/egroupware
Specify css class on customfield's row with named as field's id, in order to be able to customize its style
This commit is contained in:
@ -189,7 +189,8 @@ var et2_customfields_list = et2_valueWidget.extend([et2_IDetachedDOM, et2_IInput
|
||||
{
|
||||
|
||||
var row = jQuery(document.createElement("tr"))
|
||||
.appendTo(this.tbody);
|
||||
.appendTo(this.tbody)
|
||||
.addClass(this.id+'_'+id);
|
||||
var cf = jQuery(document.createElement("td"))
|
||||
.appendTo(row);
|
||||
if(!field.type) field.type = 'text";'
|
||||
|
Reference in New Issue
Block a user