We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For example I have this kind of data source
var datasource = { id: 1, name: 'Jane', title: 'General Manager', children: [ { id: 2, name: 'Michael', title: 'HR' }, { id: 3, name: 'Niko', title: 'IT Lead', partner: { id: 4, name: 'Putri', title: 'IT Consultant' }, children: [ { id: 5, name: 'Ollie', title: 'IT Officer' }, { id: 6, name: 'Celine', title: 'IT Staff' } ] } ] };
I want to show the "partner" on the left or right while the children is below. Is it possible to add a feature like this?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
For example I have this kind of data source
I want to show the "partner" on the left or right while the children is below. Is it possible to add a feature like this?
The text was updated successfully, but these errors were encountered: