Prado\Web\UI\WebControls\TBaseDataList::getDataFieldValue PHP Method

getDataFieldValue() protected method

If data is an array, TMap or TList, the value will be returned at the index of the specified field. If the data is a component with a property named as the field name, the property value will be returned. Otherwise, an exception will be raised.
protected getDataFieldValue ( $data, $field ) : mixed
return mixed data value at the specified field
    protected function getDataFieldValue($data, $field)
    {
        return TDataFieldAccessor::getDataFieldValue($data, $field);
    }