You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a table which has a few columns that, in addition to header text, also have checkboxes which act as a "select all" feature. All of this works fine, until I export it using the output widget. The resulting CSV file is missing the text from the header, instead using the check state of the checkbox to determine what the column header should be.
Maybe I am doing something wrong, but this seems like a bug. I am using v2.30.4
The text was updated successfully, but these errors were encountered:
You can use the output_formatContent callback to determine what is sent to the output widget... in this case you can send the content when it's processing the header and the parsed data otherwise (demo):
This looked promising, but for some reason data.parsed is always
undefined...
This particular table uses a custom parser; could that be the reason why?
Ah, the demo is using the "checkbox" parser in the parser-input-select file. Your custom parser may not be returning a human readable "checked" or "unchecked" value.
I'm guessing this issue has been resolved, so I'm going to close it. If you continue to have problems, please feel free to continue the discussion in this thread.
I have a table which has a few columns that, in addition to header text, also have checkboxes which act as a "select all" feature. All of this works fine, until I export it using the output widget. The resulting CSV file is missing the text from the header, instead using the check state of the checkbox to determine what the column header should be.
Maybe I am doing something wrong, but this seems like a bug. I am using v2.30.4
The text was updated successfully, but these errors were encountered: