extjs:fieldset-change收合图示

| 如何更改字段集组件的展开/折叠图标?默认情况下,它是一个倒三角箭头,我想将其设置为\“ + \” / \“-\”吗?使用\“ itemCls \”? 谢谢!     
已邀请:
修改折叠按钮的css(在这里
background-position
) 这是我的CSS:
#plus-min.x-panel-collapsed .x-tool-toggle{
    background-position: 0 -240px !important; /*the plus sign*/
}
#plus-min .x-tool-toggle{
    background-position: 0 -255px !important; /*the minus sign*/
}
和我的领域:
new Ext.form.FormPanel({
    renderTo : document.body,
    title : \"asdasd\",
    items :[{
            xtype:\'fieldset\',
            title: \'Plus Minus\',
            collapsible: true,
            id : \"plus-min\",
            html : \"asd\",
            height : 100
        }]
});
    

要回复问题请先登录注册