Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

A property with the name XXX is not found in the object of type YYY

When the Grid tries to load a data source collection, you may see the following exception in the browser console:

console
Error: System.Exception: A property with the name 'XXX' is not found in the object of type 'YYY'

This error occurs if your data source does not contain a property with the name specified in the error message. The Grid works only with data object values defined by the DxGridDataColumn.FieldName properties. That is why the exception is thrown if your class has a public field with the specified name. You should assign not fields but properties of the bound object as the DxGridDataColumn.FieldName property value. To resolve the issue, update your data structure so that it implements the property with the corresponding name.