Change Display Colum in a List Control

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';

image

1 Like

Thanks for your help

1 Like