From UI kit, custom field type view, how can I programmatically open the edit view?
Something on this line:
const startEditing = () => {
// unfortunately, this method is not available...
view.openEditView();
};
return (
<Button appearance="primary" onClick={startEditing}>
Open edit view
</Button>
);