// //DDL CLIENT NEW INCIDENT SELECTED INDEX CHANGED /// <summary> /// When a customer is selected it refresh the products dropdownlist so that it displays the products for that /// particular customer /// </summary> /// <param name="sender"></param> /// <param name="e"></param> protected void DdlClient_NewIncident_SelectedIndexChanged(object sender, EventArgs e) { DdlProds_NewIncident.DataBind(); }
// //CREATE NEW INCIDENT // #region CREATE NEW INCIDENT // //DDL CLIENT DATABOUND /// <summary> /// Once the clients dropdownlist has been loaded with the customers it retrieves for the first one all their /// products and it put them in the products dropdownlist /// </summary> /// <param name="sender"></param> /// <param name="e"></param> protected void DdlClient_NewIncident_DataBound(object sender, EventArgs e) { //Refresh the products dropdownlist with all the products registered to the customer selected in the customers //dropdownlist DdlProds_NewIncident.DataBind(); }