Fixed an issue where the column converter wasn't running in a rendering context.
This commit is contained in:
parent
23bb12f6d3
commit
159ce7313a
@ -148,7 +148,11 @@ class DataRow {
|
|||||||
|
|
||||||
//Invoke the column converter if there is one.
|
//Invoke the column converter if there is one.
|
||||||
if (column.converter instanceof Function) {
|
if (column.converter instanceof Function) {
|
||||||
this.columns.push(column.converter(value));
|
var converter = column.converter;
|
||||||
|
|
||||||
|
IgniteRendering.enter();
|
||||||
|
this.columns.push(converter(value));
|
||||||
|
IgniteRendering.leave();
|
||||||
} else {
|
} else {
|
||||||
this.columns.push(value);
|
this.columns.push(value);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user