コード例 #1
0
        private void BindReportData()
        {
            Sector AllSectors = new Sector();
            AllSectors.GetPAXSectors();
            AllSectors.Sort = "SectorDate Desc";
            //uiGridViewReports.DataSource = AllReports.DefaultView;
            //uiGridViewReports.DataBind();

            uiRadGrid.DataSource = AllSectors.DefaultView;
            uiRadGrid.MasterTableView.FilterExpression = "([IsReturnSector] is null) OR ([IsReturnSector] = false)";
            uiRadGrid.DataBind();
        }