Ticket T630909
Visible to All Users

ASPxGridView - The "'DevExpress.Web.Data.WebDataRow' does not contain a property with the name" error occurs when binding an ASPxComboBox in the EditItemTemplate

created 7 years ago (modified 7 years ago)

i have error massage
'DevExpress.Web.Data.WebDataRow' does not contain a property with the name 'Item_Code' when i selected value from ASPxComboBox in ASPxGridView using EditItemTemplate

C#
protected void Page_Load(object sender, EventArgs e) { GV_TransDet.DataSource = Session["Detail"]; GV_TransDet.DataBind(); } protected void btnShow_Click(object sender, EventArgs e) { Session["Detail"] = null; Table = new DataTable(); Table.Columns.Add("Trans_Det", typeof(Int32)); Table.Columns.Add("Trans_ID", typeof(Int32)); Table.Columns.Add("Item_Code", typeof(Int32)); Table.Columns.Add("Trans_ItemPrice", typeof(double)); Table.Columns.Add("Trans_Qty", typeof(Int32)); Table.Columns.Add("Trans_TotalPrice", typeof(double)); Table.Columns.Add("Trans_Comment", typeof(string)); Table.PrimaryKey = new DataColumn[] { Table.Columns["Trans_Det"] }; Table.Columns["Trans_Det"].AutoIncrement = true; Table = new DataAccess().ToTable(@"SELECT [Trans_Det] ,Det.[Trans_ID] ,[Item_Code] ,[Trans_ItemPrice] ,[Trans_Qty] ,[Trans_TotalPrice] ,Det.[Trans_Comment] FROM ST_TransMaster MS left join ST_TransDetails Det on MS.Trans_ID = Det.Trans_ID WHERE MS.Stock_Code = '" + StockCode + "' AND MS.Trans_Code = '" + TransCode + "' AND MS.Doc_No = '" + DocNO + "'"); Session["Detail"] = Table; GV_TransDet.DataSource = Session["Detail"]; GV_TransDet.DataBind(); }
ASPx
<dx:ASPxGridView ID="GV_TransDet" ClientInstanceName="grid" runat="server" KeyFieldName="Trans_Det" EnableRowsCache="False" Width="100%" Theme="MaterialCompact" OnCustomJSProperties="GV_TransDet_CustomJSProperties" AutoGenerateColumns="False" OnCustomCallback="GV_TransDet_CustomCallback"> <ClientSideEvents Init="function(s,e){grid.AddNewRow();AddKeyboardNavigationTo(s);}" RowClick="function(s, e) {s.StartEditRow(e.visibleIndex);}" /><%-- BatchEditStartEditing="onBatchEditStartEditing" BatchEditEndEditing="OnBatchEditEndEditing"--%> <Columns> <dx:GridViewDataComboBoxColumn FieldName="Item_Code" Width="25%" Caption="اسم الصنف"> <PropertiesComboBox DataSourceID="ODSItems" ValueType="System.String" ValueField="Item_Code" TextField="Item_ArName"> <ClientSideEvents SelectedIndexChanged="OnSelectedIndexChanged" /> <ValidationSettings RequiredField-IsRequired="true" Display="Dynamic" /> </PropertiesComboBox> <EditItemTemplate> <dx:ASPxComboBox ID="txtcodestock" runat="server" Width="100%" DropDownWidth="550" AutoPostBack="true" OnSelectedIndexChanged="txtcodestock_SelectedIndexChanged" DropDownStyle="DropDownList" DataSourceID="ODSItems" ValueField="Item_Code" Value='<%# Bind("Item_Code") %>' ValueType="System.String" TextFormatString="{0} ({1})" EnableCallbackMode="true" IncrementalFilteringMode="Contains" Theme="MaterialCompact" CallbackPageSize="30"> <Columns> <dx:ListBoxColumn Caption="اسم المخزن" FieldName="Item_ArName" /> <dx:ListBoxColumn Caption="الكود" Width="40px" FieldName="Item_Code" /> </Columns> </dx:ASPxComboBox> </EditItemTemplate> </dx:GridViewDataComboBoxColumn> </Columns> <SettingsEditing Mode="Inline" NewItemRowPosition="Bottom" /> <SettingsCommandButton> <DeleteButton RenderMode="Image"> <Image ToolTip="Delete" Url="../img/Icons/delete.png" /> </DeleteButton> <NewButton RenderMode="Image"> <Image ToolTip="New" Url="../img/Icons/New.png" /> </NewButton> <CancelButton RenderMode="Image"> <Image ToolTip="Cancel" Url="../img/Icons/Cancel.png" /> </CancelButton> <UpdateButton RenderMode="Image"> <Image ToolTip="Update" Url="../img/Icons/Update.png" /> </UpdateButton> </SettingsCommandButton> <%--<SettingsEditing Mode="Batch" BatchEditSettings-EditMode="Row" BatchEditSettings-StartEditAction="Click" BatchEditSettings-ShowConfirmOnLosingChanges="false" />--%> <SettingsPager PageSize="30" EnableAdaptivity="false" /> <Styles Header-Wrap="True"> <Header Wrap="True"></Header> </Styles> </dx:ASPxGridView> <asp:ObjectDataSource ID="ODSItems" runat="server" SelectMethod="Items" TypeName="MaviqStock"> <SelectParameters> <asp:SessionParameter Name="UserCode" SessionField="UserCode" Type="Int32" /> </SelectParameters> </asp:ObjectDataSource>

Answers approved by DevExpress Support

created 7 years ago

Hello,

The issue may occur when the ASPxGridView is bound at runtime, and the grid doesn't have the datasource at the moment of binding. I see that you're using ASPxComboBox with server-side events. It may force building ASPxGridView hierarchy earlier than the DataSource property is assigned (ASPxGridView isn't bound yet). To resolve this issue, the DataSource property is defined on each round trip to the server either in the Page.Init event handler or in the ASPxGridView.DataBinding event handler (see Why might paging (sorting, grouping, filtering) not work in the ASPxGridView?). I suggest you move the code where you're setting the grid's DataSource property from the Page_Load to the Page_Init event handler and check if this helps.
If this approach doesn't help, provide us with a sample runnable project where we can reproduce this behavior in action.

    Comments (2)

      Thank you for your effort
      and your suggestion (Page_Init) working with me but when bound another field it returns the same error

      ASPx
      <dx:GridViewDataSpinEditColumn Width="10%" FieldName="Trans_ItemPrice" ReadOnly="true" Caption="التكلفة"> <EditItemTemplate> <dx:ASPxSpinEdit ID="Cat2" ReadOnly="true" Number='<%# Bind("Trans_ItemPrice") %>' Theme="MaterialCompact" runat="server"> </dx:ASPxSpinEdit> </EditItemTemplate> </dx:GridViewDataSpinEditColumn>
      DevExpress Support Team 7 years ago

        Hi,

        Unfortunately, it's hard to determine the cause of the problem without inspecting your code. Typically, such errors occur when the underlying data set does not have a corresponding field that is used by the control (e.g., this error occurs when you switch data sources or the select query is changed). I suggest you try recommendations from the Q246426: WebDataRow does not contain a property with the name and T266763: ASPxGridView - The " 'DevExpress.Web.Data.WebDataRow' does not contain a property with the name 'X' " exception is thrown in certain casestickets, where we have answered a similar question.
        I also recommend you refer to the Q534489: ASPxGridView - 'DevExpress.Web.Data.WebDataRow' does not contain a property with the name X thread.
        If the issue still exists, please provide us with a compilable sample with portable data so that we can reproduce and debug the issue locally. This should help us narrow down the cause of the problem. Your time and cooperation are appreciated.

        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.