Posted on 2009-03-13 18:07
Robert Su 閱讀(5729)
評論(0) 編輯 收藏 所屬分類:
ExtJS
tbar: [
blockedtype,'-',{text:'封堵驗(yàn)證',handler:do_checkBlockedVideok,iconCls:'block'}
,'-',
{text:'刷新',iconCls:'refresh'
},'-',new Ext.Toolbar.Fill(),'-',
{text:'編輯',iconCls:'add'
},'-',
{text:'導(dǎo)出Excel','-','已封堵數(shù)量:[0] 未封堵數(shù)量:[0] 總數(shù)量:[0]'
]
這里注意下 Ext.Toolbar.Fill()
充滿組件把'導(dǎo)出Excel'頂?shù)阶钣疫?br />
CSS:
<style type="text/css">
.add {
background-image:url(../icons/add.gif) !important;
}
.delete {
background-image:url(../icons/delete.gif) !important;
}
.save {
background-image:url(../icons/save.gif) !important;
}
.block {
background-image:url(../icons/block.gif) !important;
}
.refresh {
background-image:url(../icons/refresh.gif) !important;
}
.in {
background-image:url(../icons/in.gif) !important;
}
.out {
background-image:url(../icons/out.gif) !important;
}
</style>