I am using the Table. I have data that has a field called “group”. But, you guys have made it where that naming is invalid (wish you would have added a special character to yours).
To make this work, how can I map that field “group” in the data, to something like “$group” or “group_c”, but still have the data export with the correct field name “group”.
To do that you can use the fourth – callback argument off the exportData method. You can pass a callback which accepts the data as an argument and from there you can loop through the objects and change the property name then export the data manually.
I’ll take a look at it, but this seems very hacky. If you’re going to have certain field names invalid, then giving mapping options would be a lot better. That way I won’t have to hardcode it in my app and instead have it in my DB.
Or, you could make those system names very unique, like I suggested. “$” or “-“ along those lines.