Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a checkitem menu and I want to add icons to each menu item, so I inserted each icon after the menu item is rendered.

peace of my code:

{   xtype: 'menucheckitem',
     text: 'First Arrow'
     listeners: {
           render: {
                 fn: me.onMenucheckitemRender,
                 scope: me
                        }
                     }
}



onMenucheckitemRender: function (abstractcomponent, options)
{
Ext.DomHelper.insertAfter(abstractcomponent.getEl().down(".x-menu-item-icon"), {
    tag: 'img', 
    src: "icons/arrow1.png"
});
}

This works just fine, but since I will need it many times with different icons, I would like to know how to create a subclass so I can reuse this functionality.

Thank you

share|improve this question

1 Answer

use the Ext.define method and the extend property.

Ext.define('SomeNamespace.menu.menucheckitemWithIcon', {
  extand: 'Ext.menu.CheckItem',
  alias: 'widget.menucheckitemWithIcon',

  .
  .
  . 

});
share|improve this answer
How would I change icon url each time? – Shadin Sep 11 '12 at 21:41
pass it in the config. – CD.. Sep 12 '12 at 8:35

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.