formio / formio.js

JavaScript powered Forms with JSON Form Builder

Home Page:https://formio.github.io/formio.js

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

EditGrid: editGridSelectRow and editGridUnSelectRow events not triggered

ambra-zuc opened this issue · comments

I saw in the documentation that 3 events are documented for the EditGrid component: editGridAddRow, editGridSaveRow, editGridDeleteRow.
However, looking at the source code, editGridSelectRow and editGridUnSelectRow events also seem to exist.
I tried to subscribe to the these events as indicated in the documentation example, but I am not receiving anything when the row is clicked:

form.on('editGridSelectRow', (selected) => {
console.log(selected);
});``

Everything seems to work fine for the documented events (editGridAddRow, editGridSaveRow, editGridDeleteRow).

Am I missing something?
See also #4041

Thanks

Ambra