Ticket Q235055
Visible to All Users

'DevExpress.Web.Data.WebDataRow' does not contain a property with the name

created 15 years ago

I have a aspxCombobox inside the dataItemTemplate of GridViewDataColumn
 <dxwgv:GridViewDataColumn Caption="Address" FieldName="Site"
                                                            VisibleIndex="9" Width="10px">
                                                            <DataItemTemplate>

<dxe:ASPxComboBox runat="server" ID="ddlAddress" DataSourceID="SqlDataSource1"
                                                                TextField="Site" ValueField="ID" Text='<%# Eval("Site") %>' ></dxe:ASPxComboBox>
                                                        </DataItemTemplate>
                                                            <Settings AllowAutoFilter="True" />
                                                        </dxwgv:GridViewDataColumn>
<asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="<%$ ConnectionStrings:SourceConnectionString %>" ProviderName="<%$ ConnectionStrings:SourceConnectionString.ProviderName %>" SelectCommand="SELECT [ID], [Site], [Site_Address] FROM [Address]"></asp:SqlDataSource>
I am binding the grid in page_Init event. The grid has a custom datasource. But when I run the application I get a error as DataBinding: 'DevExpress.Web.Data.WebDataRow' does not contain a property with the name 'Site'.
Please let me know how to solve it. If you could give a sample application it would be best.
The thing I'm trying to do in my project is. Put a combobox in the gridview. The gridview should be in edit mode by default and it should allow bulk update/add. Grid has several controls like textbox and combobox, whose values must be set and also updated to DB

Comments (1)
DevExpress Support Team 15 years ago

    Hello,
    Please try to change the Eval expression as shown below:

    ASPx
    Old code: Text='<%# Eval("Site") %>' > New code: Text='<%# Eval("[Site]") %>' >

    If my suggestion doesn't help, please send your test project to me.
    Thanks,
    Nick
    --------------------
    Check if Search Engine is able to answer questions faster than I do!

    Disclaimer: The information provided on DevExpress.com and affiliated web properties (including the DevExpress Support Center) is provided "as is" without warranty of any kind. Developer Express Inc disclaims all warranties, either express or implied, including the warranties of merchantability and fitness for a particular purpose. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.

    Confidential Information: Developer Express Inc does not wish to receive, will not act to procure, nor will it solicit, confidential or proprietary materials and information from you through the DevExpress Support Center or its web properties. Any and all materials or information divulged during chats, email communications, online discussions, Support Center tickets, or made available to Developer Express Inc in any manner will be deemed NOT to be confidential by Developer Express Inc. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.