Hello, I have a RadListview where all the items are always in edit mode and I have a button outside the list that should save all the changes made on each of the items, the problem is that when I click on the button all the ddata typed on the controls in the lis view is lost so I always get empty values.
protected void Button1_Click(object sender, EventArgs e)
{
foreach (RadListViewEditableItem item in rlv_Opportunities.EditItems)
{
System.Collections.Hashtable newValues = new System.Collections.Hashtable();
item.ExtractValues(newValues);
string id = item.GetDataKeyValue("lequip_id").ToString();
RadTextBox rtbSO = (RadTextBox)item.FindControl("rtb_SO");
string strT = rtbSO.Text;
}
}