Autocomplete
componentWillReceiveProps: function componentWillReceiveProps(nextProps) {
var pickList = nextProps.pickList;
var code = nextProps.code;
var newValue = nextProps.value;
var value = this._getValueFromCode(code, pickList);
if ('' === value && newValue) {
value = newValue;
}
this.setState({ value: value });
this._awesomeplete._list = this._extractListFromData(pickList);
},