如何在客户端的 javascript 上正确使用 terelik getGridMasterTableView().filter() 方法?

发布于 2024-11-30 08:58:33 字数 529 浏览 3 评论 0原文

我在 javascript 客户端上使用 telerik radGriD funcrion :

    getGridMasterTableView().get_filterExpressions().clear(); - clear array of filter expression. 

    getGridMasterTableView().filter(fieldName, strData, GetExpressionValue(fieldExpression)); - add elenent in array filter expression.

当我调用 getGridMasterTableView().filter(fieldName, strData, GetExpressionValue(fieldExpression)) 方法两次时,当 fieldName 始终相同时,方法 getGridMasterTableView().get_filterExpressions() 中watch 显示它只是重写元素,但我需要它添加新元素。怎么解决呢?

I use telerik radGriD funcrion on javascript client-side:

    getGridMasterTableView().get_filterExpressions().clear(); - clear array of filter expression. 

    getGridMasterTableView().filter(fieldName, strData, GetExpressionValue(fieldExpression)); - add elenent in array filter expression.

when I call this getGridMasterTableView().filter(fieldName, strData, GetExpressionValue(fieldExpression)) method two times, when fieldName allways the same, the method getGridMasterTableView().get_filterExpressions() in watch shows that it simply rewrites element but I need that it add new element. How resolve it?

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

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

发布评论

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

评论(1

々眼睛长脚气 2024-12-07 08:58:34

您是否尝试在同一列上应用两个过滤器?从声音中,您过滤一次,然后尝试再次过滤相同的结果。一次只能在一列上有一个过滤器,因此当您第二次调用 filter() 方法时,它只会删除旧的过滤器并根据最后一次 filter() 调用进行过滤。

有关客户端过滤的更多信息,我建议查看这篇文档文章

Are you attempting to apply two filters on the same column? From the sound of things you are filtering once, and then trying to filter that same result once more. You can only have one filter on a column at a time, so when you call the filter() method the second time it just removes the old filter and filters according to the last filter() call.

For more information regarding client-side filtering I recommend looking over this documentation article.

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