trAvis - MANAGER
Edit File: 12_fbuilder.fcommentarea.js
$.fbuilder.typeList.push( { id:"fCommentArea", name:"Instruct. Text", control_category:1 } ); $.fbuilder.controls[ 'fCommentArea' ]=function(){}; $.extend( true, $.fbuilder.controls[ 'fCommentArea' ].prototype, $.fbuilder.controls[ 'ffields' ].prototype, { title:"Comments here", ftype:"fCommentArea", userhelp:"A description of the section goes here.", initAdv: function(){ delete this.advanced.css.input; }, display:function( css_class ) { css_class = css_class || ''; return '<div class="fields '+this.name+' '+this.ftype+' '+css_class+'" id="field'+this.form_identifier+'-'+this.index+'" title="'+this.controlLabel('Instruct. Text')+'"><div class="arrow ui-icon ui-icon-grip-dotted-vertical "></div><div title="Delete" class="remove ui-icon ui-icon-trash "></div><div title="Duplicate" class="copy ui-icon ui-icon-copy "></div>'+this.showColumnIcon()+'<label>'+this.title+'</label><span class="uh">'+this.userhelp+'</span><div class="clearer"></div></div>'; }, editItemEvents:function() { $.fbuilder.controls[ 'ffields' ].prototype.editItemEvents.call(this); } });