// 2017-08-02
        // need to break this dependency
        //public UserControlView(IUserControlService serviceContext) : this()
        //{
        //    this.genericTemplate = serviceContext;
        //}

        #region Grid Events
        private void gridView_DataLoading(object sender, Telerik.Windows.Controls.GridView.GridViewDataLoadingEventArgs e)
        {
            //this.gridStatusInfo = "Cargando datos ...";

            GridViewDataControl dataControl = (GridViewDataControl)sender;

            if (dataControl != null)
            {
                dataControl.IsBusy = true;
            }
        }
Exemple #2
0
        private void gridView_DataLoading(object sender, Telerik.Windows.Controls.GridView.GridViewDataLoadingEventArgs e)
        {
            this.statusInfo.Text = "Cargando datos ...";

            this.gridView.IsBusy = true;
        }