如何在客户端的 javascript 上正确使用 terelik getGridMasterTableView().filter() 方法?
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否尝试在同一列上应用两个过滤器?从声音中,您过滤一次,然后尝试再次过滤相同的结果。一次只能在一列上有一个过滤器,因此当您第二次调用 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.