How do I change the radio button icon in extjs?
Posted
by Matthew Sowders
on Stack Overflow
See other posts from Stack Overflow
or by Matthew Sowders
Published on 2010-06-07T18:31:22Z
Indexed on
2010/06/07
21:42 UTC
Read the original article
Hit count: 227
I have two Ext.menu.CheckItem's in a group. How would I change the checked item's disc icon to something else? I would like to retain the radio button functionality (only one selected), but have a check mark instead of the disc.
var options = new Ext.Button({
allowDepress: false,
menu: [
{checked:true,group:'labels',text:'Option 1'},
{checked:false,group:'labels',text:'Option 2'}
]
});
© Stack Overflow or respective owner