ExtJS 中具有相同父容器的多个元素的并发效果

发布于 2024-10-09 05:14:40 字数 1058 浏览 0 评论 0原文

我有一个带有关联的 RowSelectionModel 和 GridView 的 ExtJS GridPanel。当用户选择某些行并单击“开始”时,我希望所有选定的行都闪烁几次。

目前,我正在做类似的事情:

selModel.each(function (record) {

  var doEffect = function (effect, row, color, count, classToToggle) {

     var effectCallback = function (count, max) {
        if (count < max) {
            return (function () { row[effect](color); });
        }
        else {
           return (function () { row.addClass(classToToggle); });
        }
      };

      row.removeClass(classToToggle);
      for (var i = 1; i <= count; i++) {
         row[effect](color, { callback: effectCallback(i, count) });
       }
  };


  // highlight selected rows
  var row = Ext.get(grid.getView().getRow(grid.store.indexOf(record)));

  // essentially calling row.highlight() 3 times 
  doEffect('highlight', row, 'f8f7d6', 3, 'x-grid3-row-selected');  
}

问题是,随着所选行数的增加,视觉效果不再同时发生。我知道您可以在效果配置中指定并发,导致该元素排队的所有效果同时发生,但因为所有行都是不同的元素,所以这不太有效。

如果我能够以某种方式在父容器上指定并发,以便在最后一个选定的行准备好之前不会发生动画,那就太棒了。

有人遇到过这种事情吗?

I have an ExtJS GridPanel with associated RowSelectionModel and GridView. When a user selects some rows and clicks "go", I would like all of the selected rows to flash a few times.

Currently, I'm doing something like:

selModel.each(function (record) {

  var doEffect = function (effect, row, color, count, classToToggle) {

     var effectCallback = function (count, max) {
        if (count < max) {
            return (function () { row[effect](color); });
        }
        else {
           return (function () { row.addClass(classToToggle); });
        }
      };

      row.removeClass(classToToggle);
      for (var i = 1; i <= count; i++) {
         row[effect](color, { callback: effectCallback(i, count) });
       }
  };


  // highlight selected rows
  var row = Ext.get(grid.getView().getRow(grid.store.indexOf(record)));

  // essentially calling row.highlight() 3 times 
  doEffect('highlight', row, 'f8f7d6', 3, 'x-grid3-row-selected');  
}

The problem is that as the number of selected rows increases, the visual effect no longer happens simultaneously. I know you can specify concurrent in the effect config, causing all the effects queued up for that element to happen simultaneously, but because all the rows are distinct elements, that doesn't quite work.

It would be awesome if I could somehow specify concurrent on the parent container such that the animation didn't happen until the last selected row was ready to go.

Anyone run into this kind of thing before?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

擦肩而过的背影 2024-10-16 05:14:41

您依次为每一行设置回调(计时器),因此它们可能会在不同时间触发。
尝试设置一个计时器并立即对所有选定的行进行更改。

也就是说,从外部删除 selModel.each() 循环,并使 doEffect 和effectCallback 获取行集合(或查询 selModel 本身)以在每次调用时进行更改。

它也会运行得更快(即消耗更少的周期),因为您一次只会运行一个计时器。

You're setting up callbacks (timers) for each row in turn, and so they may fire at different times.
Try setting up one timer and making the change to all the selected rows at once in there.

That is, remove the selModel.each() loop from outside, and make doEffect and effectCallback take a collection of rows (or query selModel themselves) to change on each call.

It'll run quicker (ie consume less cycles) too as you'll only have the one timer running at once.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文