Open Bockos opened 2 years ago
Hi @vasilich6107 ,
Issue still remains. Please consider the picture below. The delete property in the "S2Tile.fromState > body" section is working but the selected property keep remaining in the screen. I mean it works in backend, but UI does not change. How can I fix that problem?
When I check your examples, it also occurs in there.
My delete code; chipOnDelete: (i) { setState(() => groupedBusinessListSelected .remove(state.selected!.choice![i].value));
Can you share your code fully?
I have encountrered the same problem and have solved / bypassed it by adding:
state.selected?.choice?.removeAt(i);
in the function for chipOnDelete
I have encountrered the same problem and have solved / bypassed it by adding:
state.selected?.choice?.removeAt(i);
in the function forchipOnDelete
This is actaully right solution. The respective part in the example can be fixed with state.selected?.choice?.removeAt(i);
instead of _cars?.remove(state.selected?.choice?[i].value);
Hi Akbar,
In multiple selection, the selected chips on the body have delete section. But not work even in your example. Could you check it please?