Hi There,
I am using the Field with Combobox component, and I set allowCustom=true. And, the Component cannot get the Init{Edit DataGrid ROW value} value.
Here is code
Thank you,<Form onSubmit={props.onSubmit} initialValues={props.item}
render={formRenderProps => <FormElement>
<fieldset className={"k-form-fieldset"}>
<div className="mb-6">
<Field component={ComboBox} name="prod_name" data={prodNameList} required={true} textField="name"
dataItemKey="value" value={selectedName}
onChange={onChangeSelectedName} allowCustom={true} label={"Prod Name"}/>
</div>
</fieldset>
<div className="k-form-buttons">
<button type={"submit"} className="k-button k-primary" disabled={!formRenderProps.allowSubmit}>
Update
</button>
<button type={"submit"} className="k-button" onClick={props.cancelEdit}>
Cancel
</button>
</div>
</FormElement>} />