【转载】如何在工具条动态的显示用户操作,并实时显示在工具条上呢

//info为工具条上动态改变的值 var info = new Ext.Toolbar.TextItem(''); //工具条定义 var sendBbar = new Ext.PagingToolbar({ pageSize: 100, store: sendJson, displayInfo: false, items:['-',info] }) //表格复选框 var sendCsm=new Ext.grid.CheckboxSelectionModel(); //复选框事件,API解释: /** * @event selectionchange * Fires when the selection changes * @param {SelectionModel} this */ sendCsm.on('selectionchange',function(SelectionModel){ var count = sendCsm.getCount();//复选框选中的行数 var total = 0;//合计 if(sendCsm.getCount()>0){ var record = sendCsm.getSelections();//复选框选中记录对象 var j=sendCsm.getCount(); for(var i=0;i <j;i++){ var row = record;//取出一行 if(row.get('taskid')!=''){ total = total +parseInt(row.get('amount'));//取出数量相加赋值给total } } } //汇总信息 var text = "当前选中了"+count.toString()+"个任务,合计数量:"+total.toString(); //将最新的信息赋值给工具条上的info对象 //这可是关键的一步,大家要记牢哦~~ Ext.get(info.el).dom.innerHTML=text; });

 

摘自:http://9iext.5d6d.com/viewthread.php?tid=96#

你可能感兴趣的:(【转载】如何在工具条动态的显示用户操作,并实时显示在工具条上呢)