I have problem with textField binding to value. My JSON looks like this and I need to bind name.value to textField attribute, but as it is shown below, its not working. How I can manage that?
{
"id":"some_Id",
"code":"some_code",
"name":{
"value": "Czech republic",
"translations": []
},
etc....
}
<
DropDownList
data={this.props.headerData}
textField={"name.value"}
valueField={"id"}
value={this.props.selectedImporter.id}
className
=
"dd-header"
onChange={this.importerContextChanged} />
);