示例#1
0
    void txtYear_ValueChange(object sender, Infragistics.WebUI.WebDataInput.ValueChangeEventArgs e)
    {
        int  iYear = 0;
        bool isInt = int.TryParse(txtYear.Value.ToString(), out iYear);

        WebCommon.SetProjectListDropDownList(ddlPrjName, true, EMP_REF_ID, PageUtility.GetByValueDropDownList(ddlPrjType), iYear);
    }
示例#2
0
 private void numEdit_ValueChange(object sender, Infragistics.WebUI.WebDataInput.ValueChangeEventArgs e)
 {
     if (ValueChanged != null)
     {
         ValueChanged(sender, this, e);
     }
 }
示例#3
0
 private void txtMoney_ValueChange(object sender, Infragistics.WebUI.WebDataInput.ValueChangeEventArgs e)
 {
     //int
     ///Decimal
     ///
 }