개정판 2120947a
issue #0000
검색조건 : ID2 작업기본값 → Yes
Change-Id: Iea30fcb95447363aa96049150a69b075ec6e075a
ID2.Manager/ID2.Manager/Main.cs | ||
---|---|---|
468 | 468 |
this.radDropDownListIsID2Work.Items.Clear(); |
469 | 469 |
informations.IsYesNo.ForEach(x => |
470 | 470 |
{ |
471 |
this.radDropDownListIsID2Work.Items.Add(new RadListDataItem(x, x)); |
|
471 |
var item = new RadListDataItem(x, x); |
|
472 |
if (x.Equals("Yes")) |
|
473 |
item.Selected = true; |
|
474 |
this.radDropDownListIsID2Work.Items.Add(item); |
|
475 |
|
|
472 | 476 |
}); |
473 | 477 |
var allIsID2Work = new RadListDataItem("== 전체 ==", string.Empty); |
474 | 478 |
this.radDropDownListIsID2Work.Items.Insert(0, allIsID2Work); |
475 |
allIsID2Work.Selected = true; |
|
476 | 479 |
#endregion |
477 | 480 |
|
478 | 481 |
#region 작업 |
내보내기 Unified diff