Bug #17696
closedCSC-Table Rendering handles field- and text-delimiters wrong/unintuitive
0%
Description
The table-rendering code is splitting each row first by the Field Delimiter and is removing the text-delimiters afterwards. See lines 187>>194 of tx_cssstyƶedcontent_pi1.php.
That causes the following strage behavior:
"foo|bar"|baz|"bam" >> <td>"foo</td><td>bar"</td><td>baz</td><td>bam</td>
Please notice that the field delimiter is also splitting the quoted areas.
That is completely violating the sense of setting a text delimiter. The correct behavior should be like this:
"foo|bar"|baz|"bam" >> <td>foo|bar</td><td>baz</td><td>bam</td>
The Table Object would be much more usable for displaying exported csv-data if this issue would be fixed.
(issue imported from #M6543)
Updated by Alexander Opitz over 11 years ago
- Status changed from New to Needs Feedback
- Target version deleted (
0) - TYPO3 Version set to 4.1
The issue is very old, does this issue exists in newer versions of TYPO3 CMS (4.5 or 6.1)?
Updated by Alexander Opitz about 11 years ago
- Status changed from Needs Feedback to Closed
No feedback for over 90 days.