From 159ce7313a538e233422c7e7455c24db7f12c414 Mon Sep 17 00:00:00 2001 From: MattMo Date: Fri, 19 May 2023 10:30:27 -0700 Subject: [PATCH] Fixed an issue where the column converter wasn't running in a rendering context. --- data-table.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/data-table.js b/data-table.js index 5b59fd7..0ebbebf 100644 --- a/data-table.js +++ b/data-table.js @@ -148,7 +148,11 @@ class DataRow { //Invoke the column converter if there is one. 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 { this.columns.push(value); }