Xuni コントロール > FlexGrid > 機能 > データマッピング |
GridDataMap コンストラクタには 3 つのキーパラメータがあります。データマップのソースコレクションは、配列または XuniCollectionView のいずれかになります。
var c3 = GridColumn()
c3.binding = "countryID"
c3.header = "Country"
c3.dataMap = FlexDataMap(countryArray, selectedValuePath: "countryID", displayMemberPath: "name")
GridColumn *c3 = [[GridColumn alloc] init];
c3.binding = @"countryID";
c3.header = @"Country";
c3.dataMap = [[FlexDataMap alloc] initWithArray:countryArray selectedValuePath:@"countryID" displayMemberPath:@"name"];
Column c3 = grid.Columns.GetItem<Column>(3);
c3.Binding = “countryID”;
c3.Header = “Country”;
c3.DataMap = new FlexDataMap (countryArray, (NSString)”ID”, (NSString)”Name”);
countryArray は、Country 型の NSMutableArray です。Country クラスは NSObject を継承し、2 つのプロパティ(ID と Name)を持ちます。