Ticket #5216 (closed defect: wontfix)

Opened 8 months ago

Last modified 8 months ago

override dijit.layout.ContentPane."class" problem

Reported by: guest Owned by:
Priority: normal Milestone: 1.1
Component: Dijit Version: 1.0
Severity: normal Keywords: ContentPane
Cc:

Description

When i override css class in content pane with my own class, like this <div dojoType="dijit.layout.ContentPane?" layoutAlign="client" class="tableContent"></div> Content pane cant be scrollable, because it has no dijitContentPane class. I can use class="dijitContentPane tableContent", but it is inconvenient.

Change History

Changed 8 months ago by bill

  • status changed from new to closed
  • resolution set to wontfix

Apparently your ContentPane? div's style is overflow: hidden? I'm not sure why that is. In any case, this isn't something I want to change. You can simply add overflow: auto to your tableContent class:

.tableContent{
   color: blue;
   overflow: auto;
}
Note: See TracTickets for help on using tickets.