Exemplo n.º 1
0
 public void ItemInsertedEvent(object sender, AjaxControlToolkit.ComboBoxItemInsertEventArgs e)
 {
     // read from your data table in this event and bind the data to the combo boxs
 }
Exemplo n.º 2
0
 public void ItemInsertingEvent(object sender, AjaxControlToolkit.ComboBoxItemInsertEventArgs e)
 {
     string itemToBeInserted = e.Item.Value;
     // make a call to add this item to your data table
 }
Exemplo n.º 3
0
 protected void ComboBox2_ItemInserting(object sender, AjaxControlToolkit.ComboBoxItemInsertEventArgs e)
 {
 }