Browse by Tags
All Tags » datatemplate (RSS)
Showing page 1 of 2 (13 total posts)
-
Hi all,
I'm evaluating the Xceed DataGrid for almost 2 weeks now.
I want to have a DataGrid with DataRows containing a Expander control. This Expander should contain a extra row with cells hidden when the Expander is in collapsed mode.
Before I start, I want to double-check that I'm using the right approach.
I understand that a DataTemplate ...
-
Hi Ido,
You can change the glyphs on the ColumnManagerRow. Please refer to the following forum thread: http://xceed.com/CS/forums/post/26766.aspx
-
Hello,
I need to display the data in the format like amount@price (1.23@1 000 000) in the PRO grid. I have created a temple like the following
<DataTemplate x:Key=''RequestedOrder''> <StackPanel Orientation=''Horizontal''> <TextBlock Text=''{Binding ...
-
I have the following DataGrid defined in my XAML:
<xcdg:DataGridControl> <xcdg:DataGridControl.Columns> <xcdg:Column FieldName=''ContactName'' /> </xcdg:DataGridControl.Columns> <xcdg:DataGridControl.View> ...
-
I have a DataGridControl which is bound to an Observable collection. This is working fine and I see my generated columns and the cells are filled in just fine.Problem:Now I want to add an additional column whose sole purpose is to have cells that are themselves buttons or contain buttons so that the user can click the button and do ...
-
Hi,
I'm trying to customize my DataGrid display depending on the data it contains.
What I need to have is:
1) Changing the colour of some DataRows depending on a property of the displayed object (in order to highlight the active DataRows)
2) Displaying some entire DataRows with strikethrough text depending on a property of the displayed ...
-
Hi,
I would like to change dynamically the DataTemplate of one of my DataGrid's column when an event occurs.
I tried to do the following things, but it doesn't work.
1) My DataTemplates definition:
<UserControl.Resources>
<conv:RelativeAbsoluteTimeConverter_C x:Key=''relativeTimeConverter'' />
<DataTemplate ...
-
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,
I'm trying to use a converter on my DataGrid, but when I do, my data do not refresh anymore when I modify them programatically.
But if I remove the converter, everything works just fine.
Here is my code : 1) My converter that displays the ''RepeatNumber'' cell only if the IsCurrentMAF property is true : public class ...
-
We had the same problem, here is a workaround:
create a global ResourceDictionary with an associated CodeBehind file
http://stackoverflow.com/questions/92100/is-it-possible-to-set-code-behind-a-resource-dictionary-in-wpf-for-event-handli
////////////////////////////////// XAML ...
1
|
|
|
|