I have a nested structs for a Table , I want to impelement a dynamic expandable table cells, so I use a nested list to hold the structs.
struct C{
Property<...> id;
Property<...> name;
};
struct B{
Property<...> id;
Property<...> name;
Property<...> expanded;
std::vector<C> items;
};
struct A{
Property<...> id;
Property<...> name;
Property<...> expanded;
std::vector<B> items;
};
A listA;
like these above ,how to bind each node into a table cell?
I have a nested structs for a Table , I want to impelement a dynamic expandable table cells, so I use a nested list to hold the structs.
like these above ,how to bind each node into a table cell?