Is it possible to show children on parent name entering? #561
Unanswered
SivachenkoYegor
asked this question in
Q&A
Replies: 1 comment
-
Set the |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
For example, I have a data structure like this (from one of your examples on codeSandbox):
[
{
label: "VP Accounting",
checked: true,
children: [
{
label: "iWay",
children: [
{ label: "Universidad de Especialidades del Espíritu Santo" },
{ label: "Marmara University" },
{ label: "Baghdad College of Pharmacy" }
]
},
{
label: "KDB",
children: [
{ label: "Latvian University of Agriculture" },
{ label: "Dublin Institute of Technology" }
]
}
]
}
];
In the input field, I'm entering first letters like "KD". Is it possible to show not just "KDB" but its children too?
Thanks
Beta Was this translation helpful? Give feedback.
All reactions