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