//fungsi: menghandle ketika row pada gridview akan di edit, //set fokus pada isian di gridview protected void GvConnection_RowEditing(object sender, GridViewEditEventArgs e) { if (Page.IsValid) { GvConnection.EditIndex = e.NewEditIndex; GvConnection.DataBind(); this.ScriptManager1.SetFocus(GvConnection.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 = GvConnection.BottomPagerRow; TextBox txtHalaman = (TextBox)(rowPager.Cells[0].FindControl("txtHalaman")); try { if (int.Parse(txtHalaman.Text) <= GvConnection.PageCount + 1 && int.Parse(txtHalaman.Text) > 0) { GvConnection.PageIndex = (int.Parse(txtHalaman.Text)) - 1; GvConnection.DataBind(); } } catch (Exception) { txtHalaman.Text = (GvConnection.PageIndex + 1).ToString(); } }