toggle editable
I follow the tanstack example to make editable field, but after using the "cell" to style it but the editable input didn't show up... please help
SOQcolumnHelper.accessor((data) => data.item_desc, {
header: () => 'item',
id: 'item_desc',
cell: (data) => <div className='w-48'>{data.getValue()}</div>,
}),

0 Replies