onButtonClick: function(button, e, eOpts) { var params=[],tool=this.down('toolbar'),dates=tool.query('datefield'), YMD=tool.down('#YMD').getValue(),chart=this.down('chart'), Class=tool.down('#Class').getValue(), deptid=1; if(this.cf===0){ this.cf=1; chart.bindStore(this.store); } params.push(dates[0].getRawValue()); params.push(dates[1].getRawValue()); params.push(deptid); params.push(YMD); params.push(Class); this.store.getProxy().extraParams=[params,this.mothed]; this.dockedItems.items[3].moveFirst(); }
时间: 2023-05-19 16:02:29 浏览: 58
TMS.AdvToolBar.rar_AdvOfficePagerD7_AdvToolBar_AdvToolBar delphi
在这段代码中,当按钮被点击时,会执行一个函数。这个函数会获取一些参数,包括一个工具栏和一些日期字段。然后,它会从工具栏中获取一个特定的日期字段,并将其值存储在一个变量中。最后,它会使用这个日期值来执行一些操作。
阅读全文