Opened 5 years ago
Closed 5 years ago
#18413 closed defect (invalid)
dijit Tree's attribute showRoot: false doesn't work in programmatic way
Reported by: | alanland | Owned by: | alanland |
---|---|---|---|
Priority: | undecided | Milestone: | tbd |
Component: | Dijit | Version: | 1.10.3 |
Keywords: | Cc: | ||
Blocked By: | Blocking: |
Description
dijit Tree's attribute showRoot: false doesn't work in programmatic way.
but it works well when create tree with declarative markup.
require([ "dojo/_base/window", "dojo/store/Memory", "dijit/tree/ObjectStoreModel", "dijit/Tree", "dojo/domReady!" ], function(win, Memory, ObjectStoreModel, Tree){ // Create test store, adding the getChildren() method required by ObjectStoreModel var myStore = new Memory({ data: [ { id: 'world', name:'The earth', type:'planet', population: '6 billion'}, { id: 'AF', name:'Africa', type:'continent', population:'900 million', area: '30,221,532 sq km', timezone: '-1 UTC to +4 UTC', parent: 'world'}, { id: 'EG', name:'Egypt', type:'country', parent: 'AF' }, { id: 'KE', name:'Kenya', type:'country', parent: 'AF' }, { id: 'Nairobi', name:'Nairobi', type:'city', parent: 'KE' }, { id: 'Mombasa', name:'Mombasa', type:'city', parent: 'KE' }, { id: 'SD', name:'Sudan', type:'country', parent: 'AF' }, { id: 'Khartoum', name:'Khartoum', type:'city', parent: 'SD' }, { id: 'AS', name:'Asia', type:'continent', parent: 'world' }, { id: 'CN', name:'China', type:'country', parent: 'AS' }, { id: 'IN', name:'India', type:'country', parent: 'AS' }, { id: 'RU', name:'Russia', type:'country', parent: 'AS' }, { id: 'MN', name:'Mongolia', type:'country', parent: 'AS' }, { id: 'OC', name:'Oceania', type:'continent', population:'21 million', parent: 'world'}, { id: 'EU', name:'Europe', type:'continent', parent: 'world' }, { id: 'DE', name:'Germany', type:'country', parent: 'EU' }, { id: 'FR', name:'France', type:'country', parent: 'EU' }, { id: 'ES', name:'Spain', type:'country', parent: 'EU' }, { id: 'IT', name:'Italy', type:'co
Change History (3)
comment:1 Changed 5 years ago by
comment:2 Changed 5 years ago by
Owner: | changed from bill to alanland |
---|---|
Status: | new → pending |
comment:3 Changed 5 years ago by
Resolution: | → invalid |
---|---|
Status: | pending → closed |
Because we get so many tickets, we often need to return them to the initial reporter for more information. If that person does not reply within 14 days, the ticket will automatically be closed, and that has happened in this case. If you still are interested in pursuing this issue, feel free to add a comment with the requested information and we will be happy to reopen the ticket if it is still valid. Thanks!
Note: See
TracTickets for help on using
tickets.
OK. Your test case got cut off. Can you attach it using the "Attach file" button rather than cut-and-paste?