3.2.0

Bug in AW.XML.Table (2.0b1) - wrong index used for formats

There is currently a bug in AW.XML.Table (2.0b1) which breaks data formatting (row index is used instead of column). Here is a patch code:

AW.XML.Table.prototype.getText = function(i, j){
    var node = this.getNode(i, j);
    var data = node ? node.text : "";
    var format = this._formats[i];
    return format ? format.dataToText(data) : data;
};
Alex (ActiveWidgets)
October 20,

This topic is archived.

See also:


Back to support forum