Questions tagged [datagridcolumn]

A class that presents a data column in a datagrid.

Learn more about datagridcolumn at MSDN.

128 questions
0
votes
1 answer

ExtJS - Drag column header to other grid

I need keep the default feature of reordering columns and add possibility drop the column in a second grid, building in the last a list with the columns of first grid. I hope has been clear.
hesenger
  • 131
  • 2
  • 10
0
votes
1 answer

Binding list in columns of datagrid with caliburn.micro

My class is this : public class Articolo : Screen { public string Code { get; set; } public string Description { get; set; } public decimal Cost{ get; set; } public decimal Price{ get; set; } public…
puti26
  • 431
  • 3
  • 14
  • 31
0
votes
2 answers

flex:how to sort GridColumn

I would like to sort my gridcolumn.Here's my sortCompareFunction code: protected function sortCompareFunction(obj1:Object, obj2:Object, gc:GridColumn):int { collator.ignoreCase=true; return…
chu
  • 21
  • 5
0
votes
1 answer

How to show label of checkBox itemRenderer in DataGrid

The dataProvider of my datagrid is an arrayCollection with 2 columns. The first column of the arrayCollection contains true or false (so that the checkbox is selected) and the other column contains the tags, this means that the arraycollection does…
FlexyBoz
  • 195
  • 18
0
votes
1 answer

Function binding not set after model is injected

I have a CustomDataGrid that extends from DataGrid and CustomDataGridColumn that extends from DataGridColumn. CustomDataGridColumn has member variables of type Function. Inside my view, I inject a presentation model using parsley. The code is as…
kkudi
  • 1,625
  • 4
  • 25
  • 47
-1
votes
2 answers

Generic WPF DataGrid MVVM

Is it possible in WPF to have a Datagrid with some common functionality for different itemsources? Can we have a Datagrid in a control which can accept any observable collection. is there a way we can pass the Column information or define column…
-1
votes
1 answer

WPF datagrid column width codebehind 30*

i'd like to set the width of my datagrid column and my desired value is 30*. I found this var columntu = new ExtDataGridNumericColumn() { Tag = tagName, Header = header, Width = new DataGridLength(1, DataGridLengthUnitType.Auto) }; but…
andrea
  • 1,326
  • 7
  • 31
  • 60
-1
votes
2 answers

How to Enable/Disable data grid column cell based on a list of values?