Changes between Initial Version and Version 7 of Ticket #15581
- Timestamp:
- Jul 7, 2012, 12:55:25 AM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #15581
- Property Owner changed from bill to Tomasz Bielinski
-
Property
Status
changed from
new
topending
-
Ticket #15581 – Description
initial v7 8 8 For example: 9 9 10 {{{#!xml 10 11 <div dojoType="dijit.layout.BorderContainer"> 11 12 <div dojoType="dijit.layout.ContentPane" region="top" splitter="false"> … … 16 17 onShow="content_find();"></div> 17 18 </div> 19 }}} 18 20 19 21 And now, when I first time set the content, everything is okey: 20 22 23 {{{#!js 21 24 dijit.byId('contentWindow').set('content', 'bla bla bla bla'); 25 }}} 22 26 23 27 But when I'm trying to put the content second time, it crash: 24 28 29 {{{#!js 25 30 dijit.byId('contentWindow').set('content', 'and now dosen't work'); 31 }}} 26 32 27 33 Why is this happening? Can I only set once the content of contentpane since version 1.7?