如何以编程方式单击方面值来过滤 Simile 时间轴小部件上的事件?
我因此设置了一个方面:
<div ex:role="facet" ex:expression=".chapter" ex:facetLabel="Chapter" ex:sortMode=".count" ex:fixedOrder="1;2;3;4;5;6;7;8;9;10;11;12" ></div>
它用于过滤时间线事件的章节号。如何以编程方式选择其中一个方面选项来过滤可见时间线事件?我尝试在生成的 HTMl 中模拟锚点上的单击事件,但无法在 API 中公开任何内容。
最终目标是通过获取 URL 参数来允许按章节进行过滤。
I have a facet set up thus:
<div ex:role="facet" ex:expression=".chapter" ex:facetLabel="Chapter" ex:sortMode=".count" ex:fixedOrder="1;2;3;4;5;6;7;8;9;10;11;12" ></div>
It's for filtering Chapter numbers of timeline events. How would I programmatically select one of the facet choices to filter visible timeline events? I tried simulating a click event on the anchor in the generated HTMl, and have been unable to expose anything in the API.
The end goal is to allow filtering by chapter by getting a URL param.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
属性
ex:selection
可用于预过滤项目。我能够从参数添加属性(即
ex:selection="3"
),没有任何问题。The attribute
ex:selection
can be used to pre-filter items.I was able to add the attribute (i.e.
ex:selection="3"
) from a param with no problems.