fix filtro in selezione indirizzo e zona...

This commit is contained in:
Samuele E. Locatelli
2015-05-21 11:23:27 +02:00
parent 4c3ea84d3f
commit 5c5ccbbd25
11 changed files with 13 additions and 0 deletions
BIN
View File
Binary file not shown.
@@ -11,6 +11,17 @@ namespace WebSCR.WebUserControls
public partial class mod_filtroZona : System.Web.UI.UserControl
{
public event EventHandler eh_selIndir;
/// <summary>
/// solleva evento selezione data
/// </summary>
protected void reportEvent()
{
// evento!
if (eh_selIndir != null)
{
eh_selIndir(this, new EventArgs());
}
}
protected void Page_Load(object sender, EventArgs e)
{
@@ -86,9 +97,11 @@ namespace WebSCR.WebUserControls
}
else
{
Zona = "Z00";
lblCliente.Text = "";
lblZona.Text = "";
}
reportEvent();
}
}
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.