프로젝트

일반

사용자정보

개정판 55dc64a4

ID55dc64a4ba5b0568eef5f78b06578eefecefd962
상위 08fae8c9
하위 09fc3168

김태성이(가) 일년 이상 전에 추가함

issue #0000 text 검색에서 childrow에 검색어가 있는 경우 오류 발생

Change-Id: I96c47773e70d483d8c7f5e902949d29805646cf1

차이점 보기:

ID2.Manager/ID2.Manager/Controls/DetailGridViewElement.cs
14 14
    {
15 15
        public DetailGridViewElement(GridViewColumn column, GridRowElement row) : base(column, row)
16 16
        {
17
            this.BackColor = Color.Black;
18
            this.BorderBoxStyle = BorderBoxStyle.SingleBorder;
17
            //this.BackColor = Color.Black;
18
            //this.BorderBoxStyle = BorderBoxStyle.SingleBorder;
19 19
        }
20 20

  
21 21
        protected override Type ThemeEffectiveType
......
33 33
            RadPageViewExplorerBarItem explorerBarItem = item as RadPageViewExplorerBarItem;
34 34
            if (explorerBarItem != null)
35 35
            {
36
                explorerBarItem.AssociatedContentAreaElement.Children[0].MaxSize = new System.Drawing.Size(0, 152);
36
                explorerBarItem.AssociatedContentAreaElement.Children[0].MaxSize = new System.Drawing.Size(400, 402);
37 37
            }
38 38

  
39 39
            return item;
ID2.Manager/ID2.Manager/Main.cs
143 143

  
144 144
                if (File.Exists(FilePath) && viewer != null) viewer.ReadPDF(FilePath);
145 145
            }
146
            
147
            Documents doc = this.radGridViewDocuments.SelectedRows.First().DataBoundItem as Documents;
148
            {
149
                string extension = ".dwg";
150
                string filePath = Path.Combine(informations.FindID2LocalPath(doc.RefProjectCode), "drawings", "Native", $"{doc.DocumentNo}{extension}");
151
                ShowAutoCADFile(filePath);
152
            }
153 146

  
147
            if (this.radGridViewDocuments.SelectedRows.First().DataBoundItem is Documents doc)
154 148
            {
155
                string extension = ".pdf";
156
                string filePath = Path.Combine(informations.FindID2LocalPath(doc.RefProjectCode), "drawings", $"{doc.DocumentNo}{extension}");
157
                ShowPDFFile(filePath);
149
                string dwgExtension = ".dwg";
150
                string dwgFilePath = Path.Combine(informations.FindID2LocalPath(doc.RefProjectCode), "drawings", "Native", $"{doc.DocumentNo}{dwgExtension}");
151
                ShowAutoCADFile(dwgFilePath);
152
      
153
                string pdfExtension = ".pdf";
154
                string pdfFilePath = Path.Combine(informations.FindID2LocalPath(doc.RefProjectCode), "drawings", $"{doc.DocumentNo}{pdfExtension}");
155
                ShowPDFFile(pdfFilePath);
158 156
            }
159 157
        }
160 158

  

내보내기 Unified diff

클립보드 이미지 추가 (최대 크기: 500 MB)