Changes between Initial Version and Version 3 of Ticket #16571
- Timestamp:
- Jan 16, 2013, 1:43:07 AM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #16571
- Property Owner changed from bill to dtamm
-
Property
Status
changed from
new
topending
-
Property
Summary
changed from
dijit.Menue not displaying correctly in dijit.Dialog with dojox.grid.EnhancedGrid
todijit.Menu not displaying correctly in dijit.Dialog with dojox.grid.EnhancedGrid
-
Ticket #16571 – Description
initial v3 1 An dijit.Menu eseems to be not displayed correctly within an dijit.Dialog with an dojox.grid.EnhancedGrid.1 An dijit.Menu seems to be not displayed correctly within an dijit.Dialog with an dojox.grid.EnhancedGrid. 2 2 3 My declarative dijit.Menu ewithin the dijit.Dialog:3 My declarative dijit.Menu within the dijit.Dialog: 4 4 5 {{{ 5 6 <div dojoType="dijit.Menu" id="menueForGrid" style="width: auto; display: none;">[[BR]] 6 7 <div dojoType="dijit.MenuItem" iconClass="editIcon" onClick="edit(item.id);">Edit</div>[[BR]] 7 8 <div dojoType="dijit.MenuItem" iconClass="deleteIcon" onClick="delede(item.id);">Delete</div>[[BR]] 8 9 </div> 10 }}} 9 11 10 while the menu ewill be called from the grid this way:12 while the menu will be called from the grid this way: 11 13 14 {{{ 12 15 <script type="dojo/connect" event="onRowContextMenu" args="evt"> 13 16 var item = dijit.byId('gridId').getItem(evt.rowIndex).i; 14 17 dijit.byId('menueForGrid')._openMyself(evt); 15 18 </script> 19 }}} 16 20 17 This is the way it works outside of any dialog (e.g. an ContentPane of anTabContainer)!18 I had that one here for a couple of months now, and it worked till 1.8.1 (i guess, then i upgraded to 1.8.3). Now the dijit. MenuItem(s) will show up once, but if i want to choose one (i put the mouse pointer on the specific item) all items disappear. Afterwards no right click on the grid item (with an opening menue) is available anymore.21 This is the way it works outside of any dialog (e.g. an !ContentPane of an !TabContainer)! 22 I had that one here for a couple of months now, and it worked till 1.8.1 (i guess, then i upgraded to 1.8.3). Now the dijit.!MenuItem(s) will show up once, but if i want to choose one (i put the mouse pointer on the specific item) all items disappear. Afterwards no right click on the grid item (with an opening menu) is available anymore.