where "notificar" is a type checkbox custom column.
How can i get the values in the column "mail" only in the rows that column "notificar" is checked? is possible? {{tableCompetitors.selectedRow.data}} does not have the extra column in it.
Note that emails values are different in each row, 'xxxx@xx.es' is a hardcoded value by me.
Seems like you need {{tableCompetitors.recordUpdates}} which should return all changed rows in a table.
You mentioned that you need access to the email field which I'm assuming you're using to trigger other queries. You can create a new JS query that gets triggered via the table event handler and map over your changed items in the table.
i have the next JS query
var data = tableCompetitors.recordUpdates;
for (var i = 0; i<data.length; i++) {
console.log(data[i].mail);
}
that prints in console the mails in recordUpdates, but i only need the mails which checkbox is checked and i dont know how get this specific information, because if i uncheck and later check put the row in recordUpdates but it is not real for me.