Hi,
I think that is incorrect:
DataAbstract.js (line488) 6.0.58.1001 - beta:
return (this.fields[fieldNum].type == “datBlob” ? “(Blob)” : (this.rows[this.fIndex].newValues[fieldNum] ? this.rows[this.fIndex].newValues[fieldNum] : “”).toString());
If my value is 0, this is returning “” (empty), because:
0 ? 0 : “”;
""
correct return 0 (if I have a integer 0 in my datatable);
before 6.0.58.1001 (2011 winter release I think):
return (this.fields[fieldNum].type == “datBlob” ? “(Blob)” : this.rows[this.fIndex].newValues[fieldNum].toString());
- correct I suppose .
tested in chorme browser;
Thanks,
Willian.