Hi,
this is shanker am develop one application . that is radcomobox filtering in gridview when ever am selected the combo box item the grid view is filtering and populate . it's fine it,s working, But am update radgridview values in update commande event in edit mode is edit form .So when eve am click the edit button the radgridview is clear the data .am missing index value how to give editindex=1 just like "gridview editindex =e.neweditindex " how to solve that am not using linq datasourcecontrol am just like this my sample code is
it's my databind of grid
protected void Exam_nameview_SelectedIndexChanged(object o, RadComboBoxSelectedIndexChangedEventArgs e)
{
int? facilty_id = LogonDetails.Instance.sys_lclvar_default_facility_id;
classExamscheduleView.DataSource = classexamshedulemanager.sch_view_exam_schedule_detail_list(facilty_id, Exam_nameview.SelectedValue.GetInteger());
classExamscheduleView.DataBind();
}
protected void classExamscheduleView_DeleteCommand(object source, GridCommandEventArgs e)
{
}
protected void classExamscheduleView_UpdateCommand(object source, GridCommandEventArgs e)
{
}
protected void classExamscheduleView_ItemDataBound(object sender, GridItemEventArgs e)
{
}
protected void classExamscheduleView_ItemCreated(object sender, GridItemEventArgs e)
{
if (!Page.IsPostBack && e.Item is GridEditableItem)
{
e.Item.Edit = true;
}
}
how to solve that please it's argent please help me
thanks and regards
shanker.B