Cela ouvre une boîte de Pandore. Si vous avez activé le tri, le groupement et/ou le filtrage, comment cela fonctionnera-t-il?
Il y a un tas de façons de le faire, voici un (en ignorant les autres questions) ...
protected void ASPxGridView1_Init(object sender, EventArgs e) {
// Creates a column, customizes its settings and appends it to the Columns collection;
GridViewDataTextColumn colTotal = new GridViewDataTextColumn();
colTotal.Caption = "IdValue";
colTotal.FieldName = "IdValue";
colTotal.UnboundType = DevExpress.Data.UnboundColumnType.String;
colTotal.VisibleIndex = ASPxGridView1.VisibleColumns.Count;
ASPxGridView1.Columns.Add(colTotal);
}
// Populates the unbound column.
protected void ASPxGridView1_CustomUnboundColumnData(object sender, ASPxGridViewColumnDataEventArgs e) {
if (e.Column.FieldName == "IdValue") {
e.Value = e.GetListSourceFieldValue("Id") + " " + e.GetListSourceFieldValue("Value");
}
}
http://devexpress.com/Help/?document=ASPxGridView/CustomDocument3770.htm&levelup=true