fix css + inclusione classi JS gestione touch...

This commit is contained in:
Samuele E. Locatelli
2016-12-14 17:27:48 +01:00
parent 0905952008
commit d2a096eff5
11 changed files with 135 additions and 38 deletions
@@ -16,17 +16,23 @@ namespace GPW.WebUserControls
}
/// <summary>
/// salvo nuovo device...
/// resetto tutto
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
protected void btnConferma_Click(object sender, EventArgs e)
protected void btnAnnulla_Click(object sender, EventArgs e)
{
ddlIdxDipendente.SelectedIndex = 0;
lblWarning.Visible = false;
}
protected void lbtSendEmail_Click(object sender, EventArgs e)
{
// cerco key x user selezionato
int idxDipendente = 0;
string UserAuthKey = "";
string destinatario = "";
DS_Applicazione.DipendentiRow dipendente = null;
try
{
@@ -43,15 +49,5 @@ namespace GPW.WebUserControls
DataProxy.DP.sendUserAuthEmail(destinatario, UserAuthKey, idxDipendente);
}
}
/// <summary>
/// resetto tutto
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
protected void btnAnnulla_Click(object sender, EventArgs e)
{
ddlIdxDipendente.SelectedIndex = 0;
lblWarning.Visible = false;
}
}
}