Kendo UI for Angular:如何了解 Kendo-Grid 中的变化?

发布于 2025-01-12 14:04:37 字数 247 浏览 0 评论 0原文

Kendo-Grid 中是否有脏旗?在旧的 JQuery 版本中有一个,但在 Angular 版本中我没有看到类似的东西: https://www.telerik.com/kendo-angular-ui/components/grid/

如果没有,我如何才能了解更改?

Is there any dirty flag in the Kendo-Grid? In the old JQuery version there was one, but in the Angular version I don't see anything like that: https://www.telerik.com/kendo-angular-ui/components/grid/

And if no, how can I get to know about changes?

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

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

发布评论

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

评论(2

颜漓半夏 2025-01-19 14:04:37

据我所知,在这种情况下您可以使用 trackBy
我想您可能会发现以下链接有帮助
https://www.telerik.com /kendo-angular-ui/components/grid/api/GridComponent/#toc-trackby

如果您想看看它是否适合您并检查更多内容,请制作一个演示。

As far as I know, trackBy is something you could use in that case.
I guess you could find the following link helpful
https://www.telerik.com/kendo-angular-ui/components/grid/api/GridComponent/#toc-trackby

Please make a demo if you like to see if it works for you and check more things.

小鸟爱天空丶 2025-01-19 14:04:37

数据项有脏字段。

        var grid = $("#grid").data("kendoGrid");
        var data = grid._data;
        $.each(data, function (index, item) {
            if(item.dirty)
            {
                // do something
                var foo = "kung";
            }
        });

The data items has a dirty field.

        var grid = $("#grid").data("kendoGrid");
        var data = grid._data;
        $.each(data, function (index, item) {
            if(item.dirty)
            {
                // do something
                var foo = "kung";
            }
        });
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文