Displaying 1 result from an estimated 1 matches for "createdomfragment".
2008 Apr 07
4
Staff Manager tutorial from "Prototype and script.aculo.us" by Christophe Porteneuve
...E says "''undefined'' is null or not an object" for n.container =
nodes; from the init method:
......
  init: function(id, nodes) {
    id = id || ''staff'';
    nodes = nodes || this.nodes;
    nodes.each(function(n) {
      n.container = nodes;
      this.createDOMFragment(id, n);
      if (n.children)
        this.init(n.id, n.children);
    }.bind(this));
  },
......
In IE nothing works at all, though the tree loads properly
Here''s the full code of people.js:
---------------------------------------------
var Staff = {
  _templates: {
    person: new Templ...