-
22 Feb 2007 5:55 AM #1
How do you retrieve checked item in menu and submenu?
How do you retrieve checked item in menu and submenu?
I have a checkItem group and I set the first item to checked.. how do i call my checkHandler, of the first item that is already checked, when the page loads.
I have a menu checkItem group and a submenu checkItem group
thanks in advance
-
22 Feb 2007 6:37 AM #2
Can you explain a little further? Thanks.
-
22 Feb 2007 7:01 AM #3
ok here is little snippet of my code....
How do I get the "id" of the first item (DE) in the submenu
OR
How do i detect the first item which is already checked and run its function on first load.. because when you define it as checked and then loads the function doesnt get called.. you have to click on the second item then click back on the first item.
Code:var seqMenu = new Ext.menu.Menu({ id: 'seqMenu', items: [ { id: 'pieceType', text: 'Piece Type', menu: { items:[ new Ext.menu.CheckItem({ id: 'DE', text:'Default/All', checked:true, group:'piecetype', checkHandler: mailPlants.sequenceEditor }), new Ext.menu.CheckItem({ id: 'LT', text:'Letters', group:'piecetype', checkHandler: mailPlants.sequenceEditor }), new Ext.menu.CheckItem({ id: 'FL', text:'Flats', group:'piecetype', checkHandler: mailPlants.sequenceEditor }), new Ext.menu.CheckItem({ id: 'LF', text:'Letters or Flats', group:'piecetype', checkHandler: mailPlants.sequenceEditor }), new Ext.menu.CheckItem({ id: 'CO', text:'Catalog Outlets', group:'piecetype', checkHandler: mailPlants.sequenceEditor }), new Ext.menu.CheckItem({ id: 'CT', text:'Catalogs', group:'piecetype', checkHandler: mailPlants.sequenceEditor }) ] } }] });
-
22 Feb 2007 7:35 AM #4
Maybe I don't fully understand, but can't you simply call the callback after initializing the menu?
Code:mailPlants.sequenceEditor({id: 'DE'}, true);
Similar Threads
-
Toolbar item enhancement. Item align:"right" confi
By Animal in forum Ext 2.x: Help & DiscussionReplies: 40Last Post: 8 Jan 2008, 6:28 PM -
Color Menu Item Bug
By John Huang in forum Ext 1.x: BugsReplies: 2Last Post: 2 Apr 2007, 6:29 AM -
About the implementation of DOWNLOADS menu item of yui-ext
By codeexploiter in forum Ext 1.x: Help & DiscussionReplies: 0Last Post: 20 Feb 2007, 9:46 PM -
New Drag and Drop Package checked in
By jack.slocum in forum Community DiscussionReplies: 5Last Post: 23 Jan 2007, 12:16 PM -
CustomEvent sent by Menu Item
By young_matthewd in forum Ext 1.x: Help & DiscussionReplies: 1Last Post: 4 Nov 2006, 2:22 PM


Reply With Quote