0

我有 gridpanel 和每个带有处理程序的行按钮(使用 chooser.js)

http://dev.sencha.com/deploy/ext-3.4.0/examples/view/chooser.html

在 html 按钮中:

function deleteImage(data){
   window.open("http://host/delete_file.php?file="+data.url,"_self");
};

function choose(btn){
    if(!chooser){
            chooser = new ImageChooser({
                    url:'http://host/get-images.php?path='+r.get('dtp'),
                    width:600,
                    height:350
            });
    }
    chooser.show(btn.getEl(), deleteImage);
};
                                            btn = new Ext.Button({
                                                             renderTo: id2,
                                                             text: 'Удалить',
                                                             width: 75,
                                                             handler: choose
                                            });

如果我取消窗口(带图像)并在另一行打开,然后打开带有第一张图像的第一个窗口(不是来自新行)。

在 chooser.js 中取消按钮:

                            {
                                    text: 'Cancel',
                                    handler: function(){ this.win.hide();},
                                    scope: this
                            }

不熟。

打开新窗口后如何更新内容(来自新行的图像)?

4

1 回答 1

0

它工作:

function choose(v){
        new ImageChooser({
                url:'http://host/get-images.php?path='+r.get('dtp'),
                width:600,
                height:350
        }).show(v, deleteImage);
  };
                                             new Ext.Button({
                                                         renderTo: id2,
                                                         text: 'Удалить',
                                                         width: 75,
                                                         handler: choose
                                        });
于 2013-09-26T11:26:41.560 回答