Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
每次我在“值”字段中输入一个键进行过滤时,都会调用服务器。只有当我在过滤器按钮上键入时,呼叫才应该进行。 注意:网格存储是一个 JSON 休息存储。
有什么解决方案可以防止每次按键时调用这些 api 吗?它应该只在我按下过滤器按钮时调用 api
创建网格时,尝试添加属性quickFilterAutoApply: false,这将禁止通过按键事件自动触发对商店的查询
quickFilterAutoApply: false
使用 ItemFileReadStore 而不是 JSONRest 会阻止对服务器的调用,即使自动完成已打开
使用最新版本的 dojo 和 gridx:将列的 autoComplete 属性设置为 false,可以阻止此行为。
使用属性:autoComplete:列的false