How to use custom 'editComponent' in material-table?
问题 I'm trying to use 'material-table' in my project. My 'icon' column contains icon name. I need change this icon by selecting it from external dialog. I have problem with updating table data from external dialog. When I use 'input' element and I change icon name, it works correctly. editComponent: props => ( <input type="text" value={props.value} onChange={e => props.onChange(e.target.value)} /> ) I don't know, how to achive this result with my dialog. I've created the following snipped project