Browse by Tags
All Tags » Columns » CellEditors (RSS)
-
Hello,
I am using Model View ViewModel pattern. I have a button inside a DataCell of Xceed DataGrid. I want to use DelegateCommand to handle the click event of the button.
Also, I dont want to write anything for the same in my Code Behind. I want everything to reside in my ViewModel.
How can this be achieved. I thought of RoutedEvents / ...
-
Hi Senzo,
The EditTemplate is rendered only when the cell is in edit mode. You need to specify your button in <Column.CellContentTemplate> instead of <Column.CellEditor>.
Hope you got the hint.
-
Someone please help ...
My scenario is that if the user chooses a particular value (combobox) in one column of the grid, another column must either allow him to select further values or it becomes ''not applicable''. The closest solution I've managed to find was here http://pstaev.blogspot.com/2008/06/having-different-celleditor-for.html. ...
-
Is there any particular reason CellEditor in following code will not work. I need to set columns of DataGridControl manually. When I do this columns are displayed properly but editing does not work at all.
I have tested different cell editors (standard and read from resource), set AutoCreateColumns to true/false, surrounded column creation code ...
-
Got it:
List<String> itemList = new List<String>(); itemList.Add(''NW''); itemList.Add(''N''); ...
|
|
|
|