Hello,
is it correct that the CMS_INPUT_DOMTABLE doesn't know the Html-Tags <thead> and <th>?
I just implemented a CMS_INPUT_DOMTABLE and the outout Html is always rendered within a <tbody> tag and i can't find a possibility to mark the first row as head or something like that.
I was thinkin of (ab)using the CMS Function "Table" to get the first row within a <thead> instead of <tbody> and <th> instead of <td> but for this id need to specify a range in the <ROW> Tag, something like:
<ROW number="0">[...]</ROW>
<ROW number="1..LAST">[...]</ROW>
While the documentation states that ranges are possible it sadly doesnt give an example of the syntax, so i tried anything that comes to mind ("1..%n", "(1..%n)", "[1..%n]", "{1..%n}") but all of those throw a faulty syntax error.
Thx for the help and have a nice day
Ole