개정판 d62e37ef
issue #0000
AVEVA Net
- Gateway, 시스템등록 값 변경
성공/실패 -> Yes/No
Change-Id: I6b3aab2523d5b69099d61ef12e09e2784c2a135f
ID2.Manager/ID2.Manager/Main.cs | ||
---|---|---|
1016 | 1016 |
//Gateway |
1017 | 1017 |
if (this.radDropDownListGateway.Items.Count > 0) |
1018 | 1018 |
this.radDropDownListGateway.Items.Clear(); |
1019 |
informations.IsSuccess.ForEach(x =>
|
|
1019 |
informations.IsYesNo.ForEach(x =>
|
|
1020 | 1020 |
{ |
1021 | 1021 |
this.radDropDownListGateway.Items.Add(new RadListDataItem(x, x)); |
1022 | 1022 |
}); |
... | ... | |
1027 | 1027 |
//Registration |
1028 | 1028 |
if (this.radDropDownListRegistration.Items.Count > 0) |
1029 | 1029 |
this.radDropDownListRegistration.Items.Clear(); |
1030 |
informations.IsSuccess.ForEach(x =>
|
|
1030 |
informations.IsYesNo.ForEach(x =>
|
|
1031 | 1031 |
{ |
1032 | 1032 |
this.radDropDownListRegistration.Items.Add(new RadListDataItem(x, x)); |
1033 | 1033 |
}); |
... | ... | |
1377 | 1377 |
case "FrIsMarkup": |
1378 | 1378 |
case "IsID2Work": |
1379 | 1379 |
case "DTIsImport": |
1380 |
GridViewComboBoxColumn colYesNo = this.radGridViewDocuments.Columns[e.Column.Name] as GridViewComboBoxColumn; |
|
1381 |
colYesNo.DataSource = (new string[] { string.Empty }).Union<string>(informations.IsYesNo); |
|
1382 |
break; |
|
1383 | 1380 |
case "DTIsGateWay": |
1384 | 1381 |
case "DTIsRegSystem": |
1385 |
GridViewComboBoxColumn colSuccess = this.radGridViewDocuments.Columns[e.Column.Name] as GridViewComboBoxColumn;
|
|
1386 |
colSuccess.DataSource = (new string[] { string.Empty }).Union<string>(informations.IsSuccess);
|
|
1382 |
GridViewComboBoxColumn colYesNo = this.radGridViewDocuments.Columns[e.Column.Name] as GridViewComboBoxColumn;
|
|
1383 |
colYesNo.DataSource = (new string[] { string.Empty }).Union<string>(informations.IsYesNo);
|
|
1387 | 1384 |
break; |
1388 | 1385 |
case "ID2Status": |
1389 | 1386 |
case "AVEVAStatus": |
내보내기 Unified diff