Where PropertyTable is a new widget responsible for handling the html and events related to the inputs being used. I'm thinking you'll probably prefer not to bind instances of new PropertyTable() to each data row, but what would be an alternate implementation? Could we just cache the instances in an array at the PropertyEditor level?
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
@GordonSmith Here's what I'm thinking... Replace these lines: https://github.com/hpcc-systems/Visualization/blob/candidate-2.x.x/packages/other/src/PropertyEditor.ts#L94-L137
...with something like this:
Where
PropertyTable
is a new widget responsible for handling the html and events related to the inputs being used. I'm thinking you'll probably prefer not to bind instances ofnew PropertyTable()
to each data row, but what would be an alternate implementation? Could we just cache the instances in an array at the PropertyEditor level?