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
When using the CSV importer, you need at least a space between two delimiters (for an empty column) otherwise that column is skipped and the next value is taken!
This is because in the mapper CSVDatamap, in the SplitString method where the current line is being split the stringsplitoptions are set to RemoveEmptyEntries. If you set them to none then empty columns are allowed.
I would suggest to make this at least an option in the import or change the code to none, because this can cause unexpected behavior.
as I side note, I forked this repository and (locally) added mappings for multilist, checkbox, ... as well as references to sitecore 8 kernel.
Now I just have to figure out, how to check this in to github :)
The text was updated successfully, but these errors were encountered:
When using the CSV importer, you need at least a space between two delimiters (for an empty column) otherwise that column is skipped and the next value is taken!
This is because in the mapper CSVDatamap, in the SplitString method where the current line is being split the stringsplitoptions are set to RemoveEmptyEntries. If you set them to none then empty columns are allowed.
I would suggest to make this at least an option in the import or change the code to none, because this can cause unexpected behavior.
as I side note, I forked this repository and (locally) added mappings for multilist, checkbox, ... as well as references to sitecore 8 kernel.
Now I just have to figure out, how to check this in to github :)
The text was updated successfully, but these errors were encountered: