Skip to content

How to support nested properties #53

@malik1988

Description

@malik1988

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?

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type
    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions