//fungsi: menghandle ketika row pada gridview akan di edit, //set fokus pada isian di gridview protected void GvBiro_RowEditing(object sender, GridViewEditEventArgs e) { if (Page.IsValid) { GvBiro.EditIndex = e.NewEditIndex; GvBiro.DataBind(); this.ScriptManager1.SetFocus(GvBiro.Rows[e.NewEditIndex].Cells[1].FindControl("txtCol1Edit").ClientID); } else { e.Cancel = true; } }
//fungsi: pindah halaman/index page dari gridview protected void txtHalaman_TextChanged(object sender, System.EventArgs e) { GridViewRow rowPager = GvBiro.BottomPagerRow; TextBox txtHalaman = (TextBox)(rowPager.Cells[0].FindControl("txtHalaman")); try { if (int.Parse(txtHalaman.Text) <= GvBiro.PageCount + 1 && int.Parse(txtHalaman.Text) > 0) { GvBiro.PageIndex = (int.Parse(txtHalaman.Text)) - 1; GvBiro.DataBind(); } } catch (Exception) { txtHalaman.Text = (GvBiro.PageIndex + 1).ToString(); } }
//fungsi: refresh gridview ketika filter berubah protected void ddlFilterItemChange(object sender, EventArgs e) { doFiltering(); GvBiro.DataBind(); }