Hello All
sap.ui.table.TreeTable
My treetable looks as following:
my json:
{ "catalog": { "clothing": { "categories": [ {"name": "Women", "categories": [ {"name":"Clothing", "categories": [ {"name": "Dresses", "categories": [ {"name": "Casual Red Dress", "amount": 16.99, "currency": "EUR", "size": "S", "category": "Clothing"}, {"name": "Short Black Dress", "amount": 47.99, "currency": "EUR", "size": "M", "category": "Clothing"}, {"name": "Long Blue Dinner Dress", "amount": 103.99, "currency": "USD", "size": "L", "category": "Clothing"} ]} ]} ]} ]} }, "sizes": [ {"key": "XS", "value": "Extra Small"}, {"key": "S", "value": "Small"}, {"key": "M", "value": "Medium"}, {"key": "L", "value": "Large"} ] }
When the button is pressed, for all cells change size
I can only do this when all nodes expanded.
I do it so:
Question:
How to do the same, in a closed node?
Thank you.
Add comment