Exemplo n.º 1
0
        void OrderMealClient_GetOrderMealInfosListByTitleTimeSearchCompleted(object sender, GetOrderMealInfosListByTitleTimeSearchCompletedEventArgs e)
        {
            if (!e.Cancelled)
            {
                
                try
                {
                    if (e.Result != null)
                    {
                        SelectBox = Utility.FindChildControl<CheckBox>(DaGr, "SelectAll");
                        BindDataGrid(e.Result.ToList(), e.pageCount);
                    }
                    else
                    {
                        BindDataGrid(null, 0);
                    }
                }
                catch (Exception ex)
                {

                    Utility.ShowCustomMessage(MessageTypes.Error, Utility.GetResourceStr("ERROR"), ex.ToString());
                }

            }
        }
Exemplo n.º 2
0
 void OrderMealClient_GetOrderMealInfosListByTitleTimeSearchCompleted(object sender, GetOrderMealInfosListByTitleTimeSearchCompletedEventArgs e)
 {
     try
     {
         if (e.Result != null)
         {
             //SelectBox = Utility.FindChildControl<CheckBox>(DaGr, "SelectAll");
             BindDataGrid(e.Result.ToList(), e.pageCount);
         }
         else
         {
             BindDataGrid(null, 0);
         }
         loadbar.Stop();
     }
     catch (Exception ex)
     {
         Utility.ShowCustomMessage(MessageTypes.Error, Utility.GetResourceStr("ERROR"), ex.ToString());
     }
 }