Click here to Skip to main content
15,901,666 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I am having a list of items which appears in the popup when I select an option from the dropdown. The popup allows me to select items from it using checkboxes, so that the selected Option will be having the selected items. I can see the selected elements even if I select them. Now I want to hide the selected items. I used filter condition for this.

What I have tried:

I tried this filter
() => this.exportService
.GetLogicalBlocksForSysController(blockInput)
.then((result) => {
let tagInfo = result.filter(x => this.props.selectedGridTags.filter(y => y.BlockID !== x.BlockID).length > 0 ? false : true );

this.setState(() => ({
allTags: tagInfo ? tagInfo : [],
tagLoadProgress: false,
}));

})


selectedGridTags are the items that selected from the popup. I tried this approach, but it’s not hiding my items after selecting them.
Posted
Updated 8-Jun-22 19:51pm
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900