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
Hello,
Please try to change the Eval expression as shown below:
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!