dojox/layout/GridContainer

Authors:Peter Higgins, Shane O’Sullivan, Marcus Reimann
Project owner:Shane O’Sullivan
since:V1.3

dojox/layout/GridContainer is an experimental panel-like layout mechanism, allowing Drag and Drop between regions.

Usage

In order to use the GridContainer, you must require the module:

require(["dojox/layout/GridContainer"]);

The project requires some Dijit functionality, and a custom DnD handler provided in the dojox/layout package.

Additionally, the required CSS files must be included in your page for proper operation. Two are needed:

  • dojox/layout/resources/GridContainer.css
  • dojox/layout/resources/DndGridContainer.css

By requiring the GridContainer, two new attributes are mixed into the dijit/_WidgetBase class:

  • column: Holds the current column a widget is in. (If any). Defaults to “1”
  • dragRestriction: Is the widget draggable? You can use this to prohibit the dragging of a specific Widget

To figure out which column you widget is in, use

require(["dijit/registry", "dojox/layout/GridContainer"], function(registry){
  registry.byId("exampleId").column;
});

Toggling DnD

There might be several use-cases where you want to turn the drag & drop on or off. (For instance, you might offer some kind of “edit mode”, where the dnd will work and otherwise it will be turned off)

This is very easy and can be done by calling:

require(["dijit/registry", "dojox/layout/GridContainer"], function(registry){
  registry.byId("gridContainer").enableDnd(); // Enables DND
  // or
  registry.byId("gridContainer").disableDnd(); // Disables DND
});

Getting notified about DnD-Actions

The GridContainer uses the dojox/mdnd package to publish drag & drop events.

If you want to get notified of any event, use the following: (The event names are self explanatory)

require(["dojo/topic"], function(topic){
  topic.subscribe("/dojox/mdnd/drag/start", null, function(source, nodes, copy, target){
    // Your Code here
    });
  });

  topic.subscribe("/dojox/mdnd/drag/cancel", null, function(source, nodes, copy, target){
      // Your Code here
  });

  topic.subscribe("/dojox/mdnd/drop", null, function(source, nodes, copy, target){
      // Your Code here
  });
});

Examples

Programmatic example

<link rel="stylesheet" href="../../../dojox/widget/Portlet/Portlet.css">
<link rel="stylesheet" href="../../../dojox/layout/resources/GridContainer.css">

One node as placeholder is all we need

<div id='placeHere'>&nbsp;</div>

Dynamic creation of a GridContainer, with a Portal and a DropDownButton inside.

require(["dijit/registry", "dojox/layout/GridContainer", "dojox/widget/Portlet",
  "dijit/form/DropDownButton", "dijit/TooltipDialog", "dojo/dom-construct", "dojo/domReady!"]
, function(registry, GridContainer, Portlet, DropDownButton, TooltipDialog, domConstruct){
    // create a new GridContainer:
    var gridContainer = new GridContainer({
        nbZones: 3,
        opacity: .5,
        hasResizableColumns: false,
        allowAutoScroll: false,
        withHandles: true,
        dragHandleClass: 'dijitTitlePaneTitle',
        style: {width:'100%'},
        acceptTypes: ['Portlet'],
        isOffset: true
    }, 'placeHere');
    // prepare some Content for the Portlet:
    var portletContent1 = [
        domConstruct.create('div', {innerHTML: 'Some content within the Portlet "dynPortlet1".'})
    ];
    // create a new Portlet:
    var portlet1 = Portlet({
        id: 'dynPortlet1',
        closable: false,
        dndType: 'Portlet',
        title: 'Portlet "dynPortlet1"',
        content: portletContent1
    });
    // create a new TooltipDialog:
    var tooltipDialog=new TooltipDialog({
        content: "Content for TooltipDialog",
        style: {width:'320px'}
    });
    // create a new DropDownButton and assign the TooltipDialog:
    var testButton = new DropDownButton({
        label: "Click me",
        dropDown: tooltipDialog
    });
    // add the DropDownButton to the Portlet:
    portlet1.addChild(testButton);
    // add the first Portlet to the GridContainer:
    gridContainer.addChild(portlet1);
    // startup GridContainer:
    gridContainer.startup();
});

TODOC, params, examples, adding/removing regions, columns.

Error in the documentation? Can’t find what you are looking for? Let us know!