tbar: [
blockedtype,'-',{text:'封堵驗證',handler:do_checkBlockedVideok,iconCls:'block'}
,'-',
{text:'刷新',iconCls:'refresh'
},'-',new Ext.Toolbar.Fill(),'-',
{text:'編輯',iconCls:'add'
},'-',
{text:'導出Excel','-','已封堵數量:[0] 未封堵數量:[0] 總數量:[0]'
]
這里注意下 Ext.Toolbar.Fill()
充滿組件把'導出Excel'頂到最右邊
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>
posted on 2009-07-03 15:08
飛翔天使 閱讀(10583)
評論(1) 編輯 收藏 所屬分類:
ajax