Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p><strong>EDIT 2</strong></p> <p>I'd say these guys are the culprits</p> <pre><code>body.template table.listview th, table.gridview th, table.detailstable th, body.template table.listview td, table.gridview td, table.detailstable td { } body.template table.listview td, table.gridview td, table.detailstable td { } </code></pre> <p>They specifiy a style to be applied to all <code>&lt;td&gt;</code>'s below a table with the class names listview, detailstable &amp; gridview. The problem is they'll be inherited by sub tables as well</p> <p>You could try, creating a second set of those styles but change them from</p> <pre><code>table.listview td </code></pre> <p>to</p> <pre><code>table.listview td table td </code></pre> <p>and unset any styles that have been applied. that'll override the styles in the nested tables created by the Calendar Extender</p> <p><strong>EDIT</strong></p> <p>Ok, It's hard to tell without seeing the entire StyleSheet for the DynamicDataSite Table, but have a look to see if the CSS For that table is specified using</p> <pre><code>Table { //... } TD { //... } </code></pre> <p>Or using specific .classnames or #Ids</p> <p>If its the former, you'll need to do some CSS Gymnastics to override the styles for nested tables to undo the styles applied to the main table. e.g.</p> <pre><code>//Top Level Tables table td { color: Red; } //Nested Tables table td table td { color: Blue } </code></pre> <p><strong>ORIGINAL</strong></p> <p>Try putting the <code>CalendarExtender</code> outside of the table that contains it's target control. By the looks of it, the <code>&lt;td&gt;</code>'s in the picker are inheriting the parent table CSS.</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload