Ticket #4900 (closed defect: fixed)
Grid does not resize with parent widgets
| Reported by: | BryanForbes | Owned by: | sorvell |
|---|---|---|---|
| Priority: | high | Milestone: | 1.1 |
| Component: | DojoX Grid | Version: | 0.9 |
| Severity: | major | Keywords: | |
| Cc: | alex, dylan |
Description
When the grid is parented by a widget that inherits from dijit.layout._LayoutContainer, it does not resize when the parent widget resizes. Rather, you are required to use this code to get it to resize:
dojo.connect(container, "resize", grid, function() {
grid.resize();
});
This makes using the grid as a standard widget inside container widgets a pain.
Attachments
Change History
Note: See
TracTickets for help on using
tickets.