Unplanned
Last Updated: 01 Oct 2025 14:27 by Deepak
FIBA IT Department
Created on: 09 Sep 2025 05:38
Category: MultiSelectTree
Type: Feature Request
1
Add checkParents option in MultiSelectTreeCheckableSettings
Add checkParents to MultiSelectTreeCheckableSettings to control parent node states.
1 comment
Deepak
Posted on: 01 Oct 2025 14:27
I have now changed signal definition for multiSelectedItems 

readonly multiSelectedItems = signal<MultiSelectChoiceDataType[]>([
    ...this.categories.map((category) => ({
      id: category.id,
      text: category.name,
      items: category.columns
        .filter((col) => col.id !== 5)
        .map((colDef) => ({
          id: colDef.id,
          text: colDef.headerName || colDef.colId || '',
          // colId: colDef.colId,
        })),
    })),
  ]);

But this is not working, it is making all the categories checked but not childrens