extra space added in text area (coltype-txttxt)

Hi All,

I am using setcoltypes ‘txttxt’ for text area. while i am inserting a new row having text area then by default a space is coming on it.
i think this is because of below bold text. because if the data is blank then a blank space is assign to it.
when i am removing the blank space from the below bold text, it is working fine but the cell divider is not coming.

function eXcell_txttxt(cell){
if (cell){
this.cell=cell;
this.grid=this.cell.parentNode.grid;
};
this.getValue=function(){
if ((this.cell.firstChild)&&(this.cell.firstChild.tagName == “TEXTAREA”))
return this.cell.firstChild.value;
if (this.cell._clearCell)
return “”;
if ((!this.grid.multiLine)&&this.cell._brval)
return this.cell._brval;
return (_isIE ? this.cell.innerText : this.cell.textContent);
};
this.setValue=function(val){
this.cell._brval=val;
if (!val||val.toString()._dhx_trim() == “”)
val=" "; //blank space assign to val
this.setCTxtValue(val);
}
};
eXcell_txttxt.prototype=new eXcell_txt;

Thanks
Abhi

Can you provide complete demo of the issue and clear steps to reproduce?