using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; namespace MP_ADM.WebUserControls { public partial class mod_planCreate : SteamWare.UserControl { protected void Page_Load(object sender, EventArgs e) { } public string CodGruppo { get { return hfCodGruppo.Value; } set { hfCodGruppo.Value = value; } } public string CodArticolo { get { return hfCodArticolo.Value; } set { hfCodArticolo.Value = value; } } public string IdxMacchina { get { return hfIdxMacchina.Value; } set { hfIdxMacchina.Value = value; } } /// /// seleziona/deseleziona le righe indicate... /// /// /// protected void btnSelAll_Click(object sender, EventArgs e) { // seleziono tutti i valori visibili nel datagrid CheckBox chkbox = ((CheckBox)sender); bool isChecked = chkbox.Checked; if (!isChecked) { chkbox.ToolTip = traduci("btnSelAll"); } else { chkbox.ToolTip = traduci("btnDeselAll"); } foreach (GridViewRow riga in grView.Rows) { ((CheckBox)riga.FindControl("chkSelect")).Checked = isChecked; } } /// /// comando reset /// /// /// protected void lbtReset_Click(object sender, EventArgs e) { doReset(); } private void doReset() { grView.SelectedIndex = -1; grView.DataBind(); raiseEvent(SteamWare.ucEvType.Reset); } } }