From 061afa34d34543891abc0ef5c3dfe89e915d2ec4 Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Wed, 25 Nov 2020 16:22:55 +0800 Subject: [PATCH] Roo/bootstrap/CardUploader.js --- Roo/bootstrap/CardUploader.js | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/Roo/bootstrap/CardUploader.js b/Roo/bootstrap/CardUploader.js index b6a0f39909..840bd89edc 100644 --- a/Roo/bootstrap/CardUploader.js +++ b/Roo/bootstrap/CardUploader.js @@ -279,7 +279,8 @@ Roo.extend(Roo.bootstrap.CardUploader, Roo.bootstrap.Input, { } ); - this.items.push(cn); + // dont' really need ot update items. + //this.items.push(cn); this.fileCollection.add(cn); }, @@ -288,9 +289,14 @@ Roo.extend(Roo.bootstrap.CardUploader, Roo.bootstrap.Input, { var card = this.fileCollection.get(id); this.fileCollection.remove(card); - this.items = this.items.filter(function(e) { return e != card }); + //this.items = this.items.filter(function(e) { return e != card }); + // dont' really need ot update items. card.el.dom.parentNode.removeChild(card.el.dom); + }, + updateInput : function() + { + this.fileCo } -- 2.39.2