当从单独的SingleList中取消选择某个值时,如何清除其他SingleList的值?

时间:2019-04-01 04:25:42

标签: reactivesearch

我设置了一些SingeList组件来过滤搜索结果,我希望这样做,以便在取消选择第一个SingleList值时,也取消选择其他SingleLists的值。

<SingleList
  componentId="singleModel"
  dataField="model.keyword"
  showSearch={false}
  title="Models"
  react={{
    and: ["singleManufacturer"]
  }}
  URLParams={true}
<SingleList />
<SingleList
  componentId="singleVariant"
  dataField="badge.keyword"
  showSearch={false}
  title="Variants"
  react={{
    and: ["singleModel"]
  }}
  URLParams={true}
 />

我尝试阅读文档以寻找特定方法,并尝试在另一个SelectedList项目上触发click事件以取消选择该项目。

0 个答案:

没有答案