0

我正在使用智能客户端。我有两个列表网格,我将项目拖放到第三个。当我单击按钮或发生某个事件时,如何获取第三个记录中的所有记录。我尝试了多种方式,例如循环,默认处理程序,例如。ondrop 计算,但如果记录被删除,我不能使用 ondelete 或类似的东西。我提供了一种我尝试过的方法。此代码来自第三网格

onDrop:function(){
                alert('dropped');
            }
onDropOut:function(){
                alert('removed');
            }

辍学处理程序不起作用......

4

1 回答 1

0

如果你想要第三个记录时的所有记录

onRecordDrop:  function(dropRecords, targetRecord, index, sourceWidget){
  this.data; // this are all the records in the list grid
}

现在,如果您想参加任何活动,请想象第三个 listgrid id = "thirdgrid"

someevent: function(){
  thirdgrid.data; //this are the records of the third grid;
}
于 2014-09-13T18:29:20.193 回答