197a198,204 > imagePath:"", > iconUp:"up2.gif", > iconDown:"down2.gif", > iconLeft:"left2.gif", > iconRight:"right2.gif", > iconTop:"top2.gif", > iconBottom:"bottom2.gif", 302a310,317 > if (this.imagePath!="" && this.imagePath.charAt(this.imagePath.length-1)!="/") > this.imagePath+="/"; > this.iconUp = this.imagePath + (this.iconUp || 'up2.gif'); > this.iconDown = this.imagePath + (this.iconDown || 'down2.gif'); > this.iconLeft = this.imagePath + (this.iconLeft || 'left2.gif'); > this.iconRight = this.imagePath + (this.iconRight || 'right2.gif'); > this.iconTop = this.imagePath + (this.iconTop || 'top2.gif'); > this.iconBottom = this.imagePath + (this.iconBottom || 'bottom2.gif'); 305,309c320,328 < this.toTopIcon = el.createChild({tag:'button', cls:'ux-multiselect-top-button'}); < this.upIcon = el.createChild({tag:'button', cls:'ux-multiselect-up-button'}); < } < this.addIcon = el.createChild({tag:'button', cls:'ux-multiselect-right-button'}); < this.removeIcon = el.createChild({tag:'button', cls:'ux-multiselect-left-button'}); --- > this.toTopIcon = el.createChild({tag:'img', src:this.iconTop, style:{cursor:'pointer', margin:'2px'}}); > el.createChild({tag: 'br'}); > this.upIcon = el.createChild({tag:'img', src:this.iconUp, style:{cursor:'pointer', margin:'2px'}}); > el.createChild({tag: 'br'}); > } > this.addIcon = el.createChild({tag:'img', src:this.switchToFrom?this.iconLeft:this.iconRight, style:{cursor:'pointer', margin:'2px'}}); > el.createChild({tag: 'br'}); > this.removeIcon = el.createChild({tag:'img', src:this.switchToFrom?this.iconRight:this.iconLeft, style:{cursor:'pointer', margin:'2px'}}); > el.createChild({tag: 'br'}); 311,312c330,332 < this.downIcon = el.createChild({tag:'button', cls:'ux-multiselect-down-button'}); < this.toBottomIcon = el.createChild({tag:'button', cls:'ux-multiselect-bottom-button'}); --- > this.downIcon = el.createChild({tag:'img', src:this.iconDown, style:{cursor:'pointer', margin:'2px'}}); > el.createChild({tag: 'br'}); > this.toBottomIcon = el.createChild({tag:'img', src:this.iconBottom, style:{cursor:'pointer', margin:'2px'}}); 508c528 < Ext.reg("itemselector", Ext.ux.ItemSelector); --- > Ext.reg("itemselector", Ext.ux.ItemSelector); \ No newline at end of file