Is there a reason you set the input values to view.params.rowData.[DATA] and not to the data selected in the table, like Table.props.selection.data?
This way, you pass only a single parameter to the popup, and can select components of the dataset using data.0.[DEFECT/LEVEL/QTY].
I tested this, and did notice another issue: the onRowClick event triggers before the data selection is updated, so your previous selection is passed to the popup. You can overcome this by using the onRowDoubleClick event and have users double-click a line to open the popup. The first click updates the props.selection.data property and the second click opens the popup.
Actually I want input values to Table.props.selection.data.
But, my reason input values views.props.rowData.[Data], because when I try binding label data to direct data I can't find table.props.selection.
After that, I still try to using view.params.[DEFECT/LEVEL/QTY] in label then params in PopUp same like you (Table.props.selection.data).
I success display data, but not specific column.
Can you guide me binding data to data.0.[DEFECT] because I still can't find that.
After implemented I notice another issue, select components of the dataset using data.0.[DATA] just only can select 1 component right ? because when I try implement param direct data.1.[DATA] can't display value.
The way that you are opening the popup with the onRowDoubleClick method means that ONLY 1 row of data can be selected. If you want to pass more than one entry, you will need to add a separate button or other method of launching the popup that is enabled ONLY if table.props.selection.data is not empty. Then, users can select one or multiple rows and only launch the popup when they have selected all the relevant data.