Don’t you like 16×16 icons? Or they just do not look good on your Retina display anymore? Read this post to learn how to use Font Icons that are scalable, resolution independent and they always look good.
Button With Buffered Clicks
My users are used to double-clicks to such a degree that they double-click everything, also buttons. This has created the problem with buttons that add records to grid as always two records were added. Here is handling: this.toolbar.add({ id:this.id + ‘-btn-add-record’ ,text:this.addText ,tooltip:this.addRecordText ,iconCls:’icon-plus’ ,disabled:true ,listeners:{ scope:this ,click:{fn:this.onTbarClick.createDelegate(this, [‘add’]), buffer:200} } });
