Exemplo n.º 1
0
        protected void Page_Load(object sender, EventArgs e)
        {
            bool valid = CheckFunctions.checkIncidents();

            if (valid)
            {
                ProgressFunctions.loadProgress_Data(incidentProgressDropdown);
                ProgressFunctions.loadIncidentInfo(incidentProgressDropdown, technicianListLabel, dateStartedLabel, incidentDescriptionLabel, supervisorNameLabel, packageNameLabel, packageCostLabel);
                estimatedProgressBar.Attributes["value"] = ProgressFunctions.loadProgressStats(incidentProgressDropdown, progress1Label, progress2Label, progress3Label).ToString();
            }
        }
Exemplo n.º 2
0
 protected void contactButton_Click(object sender, EventArgs e)
 {
     contactPanel.Visible = true;
     ProgressFunctions.loadContactButtonInfo(btnSupervisor, supervisorNameLabel);
 }
Exemplo n.º 3
0
 protected void selectIncidentButton_Click(object sender, EventArgs e)
 {
     ProgressFunctions.loadIncidentInfo(incidentProgressDropdown, technicianListLabel, dateStartedLabel, incidentDescriptionLabel, supervisorNameLabel, packageNameLabel, packageCostLabel);
 }