We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The data CSV file breaks if we submit a field that contains multiline text (a text that contains new line characters).
The resulting CSV is broken into multilines and
enter
quick_description
Example of broken PR: #57
Either make Datami widget quote the values in the CSV or/and escape new line character prior to submitting the form.
Maybe I miss something obvious in the way to configure the widget to prevent this behaviour....
If we cannot fix it, we may also just completly forbid multiline (or long) text. But this may be impractical to display and edit the description.
long
The text was updated successfully, but these errors were encountered:
@JulienParis do you have insights about this ?
Sorry, something went wrong.
Hi @demeringo. Yes there is a way to have text breaks inside a csv cell with Datami, for a longtext subtype.
longtext
//
So in your custom props json file :
// custom-props.json ... { "name": "<COLUMN NAME>", "subtype": "longtext", "maxLength": 150, "longtextOptions": { "breakSeparator": "//", "bulletSeparator": "- " } }, ...
Some live example here :
No branches or pull requests
Bug description
The data CSV file breaks if we submit a field that contains multiline text (a text that contains new line characters).
The resulting CSV is broken into multilines and
To Reproduce
enter
key in thequick_description
field).Example of broken PR: #57
Expected behavior
Either make Datami widget quote the values in the CSV or/and escape new line character prior to submitting the form.
JSON OUTPUT
Additional context
Maybe I miss something obvious in the way to configure the widget to prevent this behaviour....
If we cannot fix it, we may also just completly forbid multiline (or
long
) text. But this may be impractical to display and edit the description.The text was updated successfully, but these errors were encountered: