if(this.cf===0){ this.cf=1; chart.bindStore(this.store); }
时间: 2023-05-19 20:02:32 浏览: 73
这段代码是 JavaScript 代码,它的作用是判断变量 this.cf 是否等于 0,如果是,则将 this.cf 的值设置为 1,并将 chart 绑定到 this.store 上。具体的实现需要看完整的代码才能确定。
相关问题
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(); }
在这段代码中,当按钮被点击时,会执行一个函数。这个函数会获取一些参数,包括一个工具栏和一些日期字段。然后,它会从工具栏中获取一个特定的日期字段,并将其值存储在一个变量中。最后,它会使用这个日期值来执行一些操作。
阅读全文