dgrid树首先渲染平坦

时间:2016-11-11 22:41:28

标签: tree dojo dgrid dstore

我对this帖子有一个非常类似的问题。

我的症状是一样的(父母和孩子一开始就变平了。你可以“扩展”父母让一些孩子在他们下面正确显示,然后你可以再次折叠他们让树到显示它应该如何)但提供的解决方案(将store.getRootCollection()传递给网格而不是只是存储)对我来说不起作用。如果我这样做,我只会显示标题。

首先,我试图使用dgrid laboratory中显示的代码(只需检查“网格功能”中的“树”)来使其工作,以尽可能多地消除我的错误。

我能想到的唯一不同之处在于我的代码与示例的不同之处在于我在自定义小部件中创建了这个网格,并且我正在加载其他几个模块(我知道我以后需要它们)

define(["dojo/_base/declare",
        "dojo/_base/lang",
        "dojo/dom",
        "dojo/dom-construct",
        "dojo/text!./templates/DefaultsWidget.html",
        "dijit/_WidgetBase",
        "dijit/_TemplatedMixin",
        "dijit/_WidgetsInTemplateMixin",
        "dijit/TitlePane",
        "dijit/layout/ContentPane",
        "dgrid/OnDemandGrid",
        "dgrid/Keyboard",
        "dgrid/Selection",
        "dgrid/extensions/DijitRegistry",
        "dgrid/Editor",
        "dgrid/Tree",
        "dstore/Memory",
        "dstore/Trackable",
        "dstore/Tree",
        "dojo/domReady!"],
		function(/*DOJO:*/declare, lang, dom, domConstruct, template,
				 /*DIJIT*/_WidgetBase, _TemplatedMixin, _WidgetsInTemplateMixin, TitlePane,ContentPane,
				 /*DGRID*/OnDemandGrid, Keyboard, Selection, DigitRegistry, Editor, Tree,
				 /*DSTORE*/Memory, Trackable, TreeStoreMixin){
			return declare("company.widgets.DefaultsWidget", [_WidgetBase, _TemplatedMixin, _WidgetsInTemplateMixin], {
				
				//The template defined with dojo.text
				templateString: template,				
				grid: null,
				
				postCreate: function(){
					
					var testData = [];
					var column;
					var i;
					var item;

					for (i = 0; i < 50; i++) {
						item = {};
						for (column in { First_Name: 1, Last_Name: 1 }) {
							item.id = i;
							item[column] = column + '_' + (i + 1);
						}
						if (i > 1) {
							item.hasChildren = false;
							item.parent = i % 2;
						}
						testData.push(item);
					}
					
					var store = new (declare([Memory, Trackable, TreeStoreMixin]))({
						data: testData
					});
					
					// Instantiate grid
					this.grid = new (declare([OnDemandGrid, Tree]))({
						collection: store,
						columns: {
							First_Name: {
								label: 'First Name',
								renderExpando: true
							},
							Last_Name: {
								label: 'Last Name'
							}
						},
					}, this.testGrid);
					

				},
				startup: function() {
					this.grid.startup();
				}

			}); //return declare
        }//function
);//define

这是网格显示的集合:store,

enter image description here

如果您需要更多信息或者我错过任何SO指南或礼仪,请告诉我,我会很乐意编辑,改写等。

1 个答案:

答案 0 :(得分:0)

似乎导致网格以这种方式显示的问题是根行中没有parent: null。实验室中显示的代码似乎不能正常工作,并且需要我刚刚提到的修复以及我引用的问题中的.getRootCollection()修复。