UiPath Forms - Datagrid with radio button

Hi,

I’m trying to use a datagrid with input from an excel file as datatable. I’m trying to use a radio button for each row in data grid that user can select, something like below.

Is there any specific option to enable this for grid itself so that the radio button will appear for entire row instead of “Item Code”? After clicking on submit, I’m expecting the jsonOutput containing only the details of selected row. Please note that each of the text boxes are editable as well.

Thanks,
Anil Munjuluri

Were you able to find solution for this problem?

Thanks
Baskar

  1. Try adding logic with JSONLogic as (change the var names to match your project)
    ==========================================
    {
    “and”: [
    {
    “!”: {
    “var”: “row.radio1”
    }
    },
    {
    “some”: [
    {
    “var”: “data.dataGrid”
    },
    {
    “===”: [
    {
    “var”: “radio1”
    },
    “yes”
    ]
    }
    ]
    }
    ]
    }
    =============================================
    and 2. In action - Use type ‘Property’, ‘Component Property’ as ‘Disabled’ and value as True
    (or)
    In action - Use type ‘Property’, ‘Component Property’ as ‘Hidden’ and value as True