Hello, I have a Form, with a List Control, i have some Yes or No Fields.
Its posible to display de Value Yes or No, in the column view? instead of showing the check
Hello, I have a Form, with a List Control, i have some Yes or No Fields.
Its posible to display de Value Yes or No, in the column view? instead of showing the check
Hello @eterrazas,
For this you can change the column template using the code:
const { field, row } = ctx;
const name = field.RealFieldName || field.Name;
return row[`${name}.value`] === '1' ? 'Yes' : 'No';
Thanks for your help