I have an ASPxGridView with a column containg ASPxTextBox
<dx:GridViewDataTextColumn Caption="Capacity" FieldName="Capacity" VisibleIndex="4" >
<DataItemTemplate>
<dxe:ASPxTextBox ID="txtCapacity" runat="server" Text='<%# Eval("Capacity") %>'>
</dxe:ASPxTextBox>
</DataItemTemplate>
</dx:GridViewDataTextColumn>
I added a button for saving the capacity.
I use GetRowValues(index, field_name) to access other fields and FindRowCellTemplateControl(index, column, id) to be able to get txtCapacity's value. But the problem is, when paging is involved, I can't access the textboxes in other pages.
Any ideas about this? Thanks
EDIT v.1
Here is my code where I invoke FindRowCellTemplateControl()
protected void btnSave_Click(object sender, EventArgs e)
{
List<Capacity> capacityList = new List<Capacity>();
for (int i = 0; gvCapacity.VisibleRowCount > i; i++)
{
Capacity c = new Capacity();
c.Id = (int)gvCapacity.GetRowValues(i, "Id");
ASPxTextBox txtCapacity = (ASPxTextBox)gvCapacity.FindRowCellTemplateControl(i, (GridViewDataColumn)gvCapacity.Columns["Capacity"], "txtCapacity");
c.Value = Convert.ToInt32(txtCapacity.Text);
capacityList.Add(c);
}
//Save Capacity
//...
}
FindRowCellTemplateControl(index, column, id), plus; cant you just loop through your underlying datasource to get theCapacitiesvalues? I see you use binding. – Rami.Shareef Oct 3 '11 at 12:48Capacitiesvalues, because they are being changed in this page (that's why Capacities are displayed in text boxes). – KaeL Oct 4 '11 at 6:27