How to add event "onClick" for row of Inline repeat in Form?

Hi,
I would like to add event onClick for row of Inline Repeat in Form, but I cannot find any proper event in eventHandler of FormModelMap.RenderConfiguration.
Is there any way that I can deal with it?

Hi,
the form engine currently does not provide a way to customize the onClick handler of repeat rows directly.
For inline repeats this would also be tricky, because editing the inputs in an IR row would also trigger the rowClick.

You might consider using a row action button for the InlineRepeat instead to achieve a rowClick functionality (with the caveat that you need to click on a specific button in each row).

If your Inline Repeat is readonly, you can try using a (readonly) Embedded repeat instead. Then you can model your rowAction as the defaultRowAction and hide its label, which achieves the experiences of a real “rowClick”