Exemplo n.º 1
0
 protected void combobox1_SelectedIndexChanged(object sender, C1.Web.Wijmo.Controls.C1ComboBox.C1ComboBoxEventArgs args)
 {
     C1.Web.Wijmo.Controls.C1ComboBox.C1ComboBox combobox = sender as C1.Web.Wijmo.Controls.C1ComboBox.C1ComboBox;
     if (combobox != null)
     {
         CategoryID = int.Parse(combobox.SelectedValue);
     }
 }
Exemplo n.º 2
0
 protected void productcombo_SelectedIndexChanged(object sender, C1.Web.Wijmo.Controls.C1ComboBox.C1ComboBoxEventArgs args)
 {
     DrawCharts();
     this.DrawGauge();
     if (args.NewSelectedIndex == 0)
     {
         this.imgproduct.ImageUrl = "~/Images/xboximages.png";
     }
     else if (args.NewSelectedIndex == 1)
     {
         this.imgproduct.ImageUrl = "~/Images/Playstationimages.png";
     }
     else
     {
         this.imgproduct.ImageUrl = "~/Images/Nvidiaimages.png";
     }
 }
Exemplo n.º 3
0
 protected void monthcombo_SelectedIndexChanged(object sender, C1.Web.Wijmo.Controls.C1ComboBox.C1ComboBoxEventArgs args)
 {
     DrawCharts();
     this.DrawGauge();
 }