Update table data before exporting without the need to draw()

Update table data before exporting without the need to draw()

panottpanott Posts: 1Questions: 1Answers: 0

Hello!

I'd like to know if its possible to manipulate and export the data bound to table without needing to draw() the updates.

The structure of my data is:

[
{OrderID: "Order1", Items: [{item: "Order1 - item1"}, {item: "Order1 - item2"}]},
{OrderID: "Order2", Items: [{item: "Order2 - item3"}, {item: "Order2 - item4"}]},
]

And I'd like to display this data when exported as:

"Order1", "Order1 - item1"
"Order1", "Order1 - item2"
"Order2", "Order2 - item3"
"Order2", "Order2 - item4"

Thanks!

Answers

  • colincolin Posts: 15,237Questions: 1Answers: 2,599

    We're happy to take a look, but as per the forum rules, please link to a test case - a test case that replicates the issue will ensure you'll get a quick and accurate response. Information on how to create a test case (if you aren't able to link to the page you are working on) is available here.

    Cheers,

    Colin

This discussion has been closed.