Bug #64768
closedClasses for tables set in RTE are not renddered in FE
0%
Description
Since about two weeks it no longer works that classes are taken for tables in FE. Since TYPO3 currently being developed, I have been waiting for. But I think this is a mistake.
The said part of the configuration which has always worked:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
RTE.classes {
table {
name = Table: Base
}
table-striped {
name = Table: Striped rows
alternating.rows {
# 0 = even, 1 = odd
startAt = 1
oddClass = row-odd
evenClass = row-even
oddHeaderClass = row-odd
evenHeaderClass = row-even
}
}
table-bordered {
name = Table: Bordered table
}
table-hover {
name = Table: Hover rows
}
table-condensed {
name = Table: Condensed table
}
........
PAGE TS CONFIG:
RTE.default {
buttons {
blockstyle.tags.table.allowedClasses := addToList(table, table-striped, table-bordered, table-hover, table-condensed)
}
proc {
allowedClasses (
table, table-striped, table-bordered, table-hover, table-condensed, table-responsive, row-odd, row-even,
)
}
........
SETUP:
- Allow classes to tables
lib.parseFunc_RTE.externalBlocks.table.stdWrap.HTMLparser.tags.table.fixAttrib.class.list := addToList(table, table-striped, table-bordered, table-hover, table-condensed)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In BE (RTE), the classes are displayed. Only in the FE it is not accepted. I'm pretty sure that there's something wrong.
Thanks Harald