Hi
I'd like to process a row data in a matrix after pressing the button in the same row
but failed for several days
is it possible ?
regards
Can I get the row data in a matrix
Show previous comments
(0)
Comments
(0)
Sign in to comment on this post
Answers approved by surveyjs Support
Hello,
Here is the code and example:
JavaScriptsurvey.onGetMatrixRowActions.add((sender, options) => {
const row = options.row;
options.actions.push({
id: 'custom',
title: 'Show',
location: "end",
action: () => {
alert(JSON.stringify(row.value));
},
});
});
Thank you,
Andrew
SurveyJS Team