refresh pagine controlli, turni, mappa stato, dettaglio

This commit is contained in:
Samuele E. Locatelli
2018-03-13 12:00:31 +01:00
parent 9e81b20c62
commit 4b8c4fc8d8
16 changed files with 102 additions and 149 deletions
@@ -6,6 +6,10 @@ namespace MoonProTablet.WebUserControls
{
public partial class mod_turni : System.Web.UI.UserControl
{
/// <summary>
/// registrato nuovo valore
/// </summary>
public event EventHandler eh_updated;
/// <summary>
/// idx macchina selezionata
/// </summary>
@@ -54,6 +58,11 @@ namespace MoonProTablet.WebUserControls
{
DataLayer.obj.taTurniMacc.stp_turniMacchineUpdateTurno(idxMacchina.ToString(), turno);
setupTurni();
// sollevo evento!
if (eh_updated != null)
{
eh_updated(this, new EventArgs());
}
}
protected void chkT1_CheckedChanged(object sender, EventArgs e)