I would like to make treetable or tree, where user can select dimensions and based on dimensions he will get some result. I am facing now with following problems:
Parent radio needs to be disabled or removed. I would like to force child selection
When child radio is selected then cell data is changed to radio state (0 or 1). How can I keep original data separate than radio status
Every parent is for themself. So, I would like to allow user to select one vehicle and one market (from snippet). In current snippet all radios are connected. I believe that they share same name and javascript recognize them as one collection.
(3) yep, you are right. In your case there are two ways
use checkboxes instead ( it will require some extra logic in oncheck, to handle if any other checkbox in the same group already checked )
implement you own radio buttons - instead of common radio you can place native input@type=radio tag in the template. And onItemClick handler to change the item’s state