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.
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…
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…
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…
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…
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…
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…