Power Table Scripted Text Not Showing Up In Dataset

In configureCell extension function have scripted text that automaticly gets inserted to the table but it doesn’t show up in the dataset. Is there a way to get this to go in to the dataset?

That would create an infinite loop, as changes to the dataset cause all of the configure* functions to run again. You should bind your raw data to a custom property, then script or filter that in the binding to the .data property. configureCell is a presentation operation, not a data operation. (It can set up an editor, but it is not supposed to be an edit operation itself.)

1 Like