Skip to content

Instantly share code, notes, and snippets.

@piscis
Created October 29, 2016 17:47
Show Gist options
  • Save piscis/8833d4ba774953532db5d94d36c034c6 to your computer and use it in GitHub Desktop.
Save piscis/8833d4ba774953532db5d94d36c034c6 to your computer and use it in GitHub Desktop.
const matrixRatingColums = [
{ value: 1, text: '1' },
{ value: 2, text: '2' },
{ value: 3, text: '3' },
{ value: 4, text: '4' },
{ value: 5, text: '5' },
{ value: 6, text: '6' }
];
// ....
{ type: 'matrix', name: 'matrix',
title: 'title 1',
isRequired: true,
isAllRowRequired: true,
columns: matrixRatingColums,
rows: [
{ value: 'a', text: 'A answer' },
{ value: 'b', text: 'B answer' },
{ value: 'c', text: 'C answer' },
{ value: 'd', text: 'D answer' },
{ value: 'e', text: 'E answer' },
{ value: 'f', text: 'F answer' }
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment