Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

24
votes
2answers
3k views

How can I sort a DataGridTemplateColumn on a WPF Toolkit DataGrid?

I have a WPF Toolkit DataGrid with one DataGridTemplateColumn. I've specified in a grid attribute that I wish all columns to be sortable, but the DataGridTemplateColumn won't allow it. All other ...
4
votes
4answers
4k views

WPF Datagrid -DataGridTemplateColumn tab focus issue

I am using Microsoft WPF datagrid. I have noticed a strange behavior with WPF datagrid DataGridTemplateColumn. When you use the templateColumn in the grid and the template column contains some ...
3
votes
2answers
1k views

WPF DataGrid: Automatically re-sort on a DataGridTemplateColumn

In WPF's DataGrid control, if you set a column to one of the default column types (like DataGridTextColumn or DataGridCheckBoxColumn), sort on that column, and then change its value, the grid will ...
3
votes
1answer
586 views

Custom DataGrid column with a CellTemplate and binding

I need to create a reusable DataGrid column with a custom CellTemplate. This CellTemplate should, among other things, contain a TextBlock control to which I need to bind values to display in the ...
3
votes
1answer
988 views

Silverlight DataGridTemplateColumn vs. DataGridTextColumn

Why does this work... <data:DataGridTemplateColumn Header="YTD v. Exchange" x:Name="YTDvExchange" Visibility="Collapsed" CanUserSort="True" SortMemberPath="ytdExchangeReturn.value"> ...
2
votes
1answer
17 views

DataGridTemplate Visibility Binding Not working

I have this datagridtemplatecolumn of mine which I would like to bind to a property on my project page which has a type of System.Windows.Visibility. The problem is that whenever im compiling the XAML ...
2
votes
3answers
675 views

WPF DataGridTemplateColumn with ComboBox Binding (MVVM pattern)

I am going bonkers with the following WPF DataGrid+ComboBox scenario. I have a set of classes which look like; class Owner { int ID { get; } string Name { get; } public override ...
2
votes
1answer
154 views

WPF DataGrid how to set ColumnType to different type based on bound data?

I have "Preferences" data structure where I have string "Value" field and enum for "Type" field. Type can be 0-Boolean, 1-Integer, 2-String ... Depending on value in this Type field I'd like to ...
2
votes
0answers
976 views

WPF DataGrid cell string format as a style or template

I tried several ways to factor out the format of a cell in a WPF DataGrid (the one provided with .NET 4): a data converter, the "StringFormat" binding property within a style, the "StringFormat" ...
2
votes
3answers
163 views

Clear TextBlock from Button when they both are in a DataGridTemplateColumn

I have a DataGrid with DataGridTemplateColumn. The DataGridTemplateColumn contains a button and TextBlock. I want that pressing the button will clear the textBlock's text. How do I do that ? XAML: ...
2
votes
3answers
275 views

In the built-in WPF DataGrid, can I set the datasource for a DataGridTemplateColumn?

In this hypothetical example, imagine I have an object FooSet that has five properties Foo1, Foo2, Foo3 Foo4 and Foo5 all of which are type Foo which itself has several properties. Finally, I have a ...
2
votes
1answer
176 views

Sorting doesn't work on WPF DataGrid templated columns?

I noticed that sorting always do not work on DataGrid templated columns, is there any solution for this problem?
2
votes
1answer
805 views

Strange behavior with CheckBox in DataGridTemplateColumn

I have a SL4 DataGrid with a column containing a checkbox: <data:DataGridTemplateColumn Header="Check" CanUserSort="False" > <data:DataGridTemplateColumn.CellTemplate> ...
2
votes
1answer
312 views

styling the datatemplate to fit silverlight datgrid column header

i have a style with datatemplate in xaml page as shown below . < Style x:Name="mytemplate" x:Key="mytemplate" ...
2
votes
1answer
398 views

WPF DataGridTemplateColumn shared template?

Hi I have a datagrid that has a number of datagridtemplate columns that are all identical apart from they each have a different datacontext on the template's stackpanel. ...
2
votes
1answer
589 views

Dynamic DataGrid columns in WPF DataGrid based on the underlying set of data (and their type)

I've got kind of a conceptual question. I am in the process of wrapping some statistics classes I wrote into WPF. For that I have two DataGrid(-Views, currently in WinForms). In one DataGrid each ...
2
votes
1answer
979 views

How can I center a Silverlight DataGridTemplateColumn header?

I want to center the header on a Silverlight DataGridTemplateColumn. The following code gets me most of the way there: DataGridTemplateColumn column = new DataGridTemplateColumn(); ...
2
votes
4answers
4k views

WPF - How to bind a DataGridTemplateColumn

I am trying to get the name of the property associated with a particular DataGridColumn, so that I can then do some stuff based on that. This function is called when the user clicks context menu item ...
2
votes
2answers
578 views

WPF: System.ArgumentException => {“'{0}' is not a Visual or Visual3D.”}

when I d*ouble-click* - or click once when its already focused - below the items in a empty area of the Listbox which is within my DataGridTemplateColumn then I get the above error message. WHAT do ...
2
votes
1answer
1k views

Access Datagrid row on TemplateColumn button click

I am implementing a file upload tool using Silverlight. In this I can browse for files and when I select a file then it is bound to a datagrid. In the datagrid I have a template column with a button ...
2
votes
2answers
2k views

WPF decomposition - DataGridTemplateColumn

I am trying to move custom DataGrid column definition into a UserControl. MyComboBoxColumn.xaml <dg:DataGridTemplateColumn x:Class="WpfDecomposition.MyComboBoxColumn" ...
1
vote
1answer
191 views

WPF Change DataGridTextColumn when DataGridTemplateColumn->ComboBox changed, while ComboBox binding is different to TextColumn

I've been struggling with this problem for two weeks now. I've searched all over Google and Stackoverflow and I can't seem to find the correct answer. Usually I don't like to ask questions unless it ...
1
vote
1answer
94 views

Image from object in Datagrid template column

I am trying to display an image in my datagrid in a template column, the code: <data:DataGridTemplateColumn Header="" x:Name="colPriority"> <data:DataGridTemplateColumn.CellTemplate> ...
1
vote
1answer
49 views

DataGridTemplateColumn sizing

I have a WPF app with a DataGrid containing 10 DataGridTemplateColumns. When I bind a collection of objects to the data grid they all display fine in the grid. The only problem is that if I have I ...
1
vote
1answer
778 views

Silverlight 4.0 : How to get DatagridTemplateColumn Header in code behind

have in XAML a datagridtemplate column <sdk:DataGridTemplateColumn x:Name="Urgency"> <sdk:DataGridTemplateColumn.CellTemplate> <DataTemplate> ...
1
vote
3answers
513 views

Command binding inside a DataGridTemplateColumn

I am working on a Silverlight application which makes an extensive use of Prism, the MVVM pattern and MEF. For several reasons, I have chosen to follow a View-first approach. In one of the Views ...
1
vote
1answer
289 views

Silverlight, datagrid, autogenerated columns on modified column change cell visibility of content

I have a form, it has a grid. I autogenerate the columns and tweak them as required: if (e.PropertyName == "id") { System.Windows.Style style = new Style(typeof(DataGridCell)); ...
1
vote
2answers
302 views

How to conditionally hide elements in a TemplateColumn of a WPF DataGrid?

Context: a C# 4.0 WPF application with a datagrid that has one TemplateColumn showing a progress bar. How can one get the grid to only display the progress bar for certain items based on a condition? ...
1
vote
2answers
735 views

How can I add combo Box In a Table cell using LWUIT — J2ME?

I want to add a combo Box in table cell to provide drag n drop option LWUIT. I have used this option for it .. private String strCmbBox[] = { "1", "2", "3", "4" }; ComboBox comboRdoBox = ...
1
vote
1answer
263 views

Help with finding TextBox inside CellEditingTemplate

Can you give me some idea about how to find TextBox inside CellEditingTemplate? Thanks
1
vote
1answer
461 views

DataGridTemplateColumn Click problem

I have a DataGridTemplateColumn. Inside its CellEditingTemplate, I put a DatePicker control. Now if I want to edit the date, I have to click three tiime to let DatePicker begins editing. Can someone ...
1
vote
1answer
678 views

DataGrid: Binding inside of DataGridTemplateColumn to property of the list

A list is bound to a DataGrid in Silverligh 4: <data:DataGrid x:Name="dataGrid" ItemsSource="{Binding DetailsCollection}" IsReadOnly="True"> ...
1
vote
1answer
907 views

How do I add multiple controls to a DataGridTemplateColumn of a datagrid using wpf?

I have several instances where I would like to have several controls in a single column in a datagrid. For example, I have a dataset that contains images with matching description, image source, ...
1
vote
3answers
2k views

DataGrid: dynamic DataTemplate for dynamic DataGridTemplateColumn

I want to show data in a datagrid where the data is a collection of public class Thing { public string Foo { get; set; } public string Bar { get; set; } public List<Candidate> ...
1
vote
1answer
584 views

custom control in DataGridTemplateColumn

I'd like to add my custom control into a template column of data grid. The custom control is very similar to a text box, but has an icon in it. The user can click the icon, and selects an item from a ...
1
vote
1answer
469 views

WPF DataGridTemplateColumn IsSelected ForgroundColor not working as expected

I have a DataGrid that contains several DataGridTemplateColumns. My problem is that the currently selected row will turn some of the cells foregrounds to white, i.e. make the text white. ...
1
vote
1answer
4k views

How to customize and reuse a DataGridColumnHeader style?

I'm trying to customize the column headers of a DataGrid to show sub-column headers as in the following screenshot: I've made a style for 2 sub-column as in the following XAML: <UserControl ...
1
vote
0answers
628 views

Set DataGridTemplateColumn.SortMemberPath to navigation property?

I want to set the sorting of a WPF DataGridTemlpateColumn to a property of one of the child members in the row. For instance, the DataGrid's ItemsSource is an Array of computers, each of them has a ...
1
vote
1answer
937 views

Silverlight 3 - Add a value converter for the SortMemberPath property of a data grid column header

I created a DataGrid, that utilizes customized data cells using the DataGridTemplateColumn.CellTemplate directive. I placed a textblock inside with the Text field using a Binding to one of the ...
1
vote
2answers
3k views

What is the code behind for datagridtemplatecolumn, and how to use it?

I have a DataGrid in WPF. And I am trying to add Buttons to certain cells of the grid, after it is bound to a particular ItemsSource. I have tried to do this in the xaml like this: ...
0
votes
1answer
37 views

DataGridTemplateColumn with CheckBox

I have a dynamic DataGrid in which one of the columns is a CheckBox. I created a "Transactions" class in which I bind the columns of the datagrid to different properties in that class. I want my ...
0
votes
1answer
81 views

Getting binding expression out of a DataGridTemplateColumn's CellTemplate in code-behind

I'm looking for a possibility to read the binding expression out of a DataGridTemplateColumn's CellTemplate in code behind. My template columns look like this: <DataGridTemplateColumn x:Name="..." ...
0
votes
2answers
43 views

Access DataGridTemplateColumn content

I have a WPF DataGrid templatecolumn that has a DataTemplate for an AutoCompleteBox from the wpf toolkit. During RowEditEnding event and validation procedures, I am not able to see the content in the ...
0
votes
1answer
86 views

Datagridview copy and paste on combobox column

I am working on a datagridview control. I have added a combobox column to it and populating it from a datatable as; DataTable datatable1 = new DataTable(); ...
0
votes
1answer
48 views

Why does this happen with Datagrid?

I've a Silverlight app (Silverlight 4 in VS2010) wherein I've a datagrid. I wanted to set the border for the datagrid rows. So in the <DataTemplate> I wrote this: <Border BorderBrush="Black" ...
0
votes
0answers
73 views

Bind DataGridTemplateColumn Visibility

I am trying to bind the visibility of a column in a datagrid to a boolean DependencyProperty in the ViewModel (Set as data context of the View - UserControl in this case). For some reason (I don't ...
0
votes
0answers
97 views

How to modify DatagridTemplateColumn header content runtime in Silverlight?

I defined the DataGridTemplateColumn.HeaderStyle as resource. <UserControl.Resources> <Style x:Key="DataGridHeaderStyleProductName" TargetType="sdk:DataGridColumnHeader"> <Setter ...
0
votes
0answers
48 views

Navigate to content of DataGridTemplateColumn in WPF

I'm designing a WPF DataGrid, and I set the DataGridTemplateColumn.CellTemplate, which is of type DateTemplate, to use one of our inherited TextBlocks. The xaml code looks like this: ...
0
votes
1answer
73 views

Hyperlink keeps failing

I am trying to create a hypelink which the user can click and navigate to a website. The link is working but I am getting this exception which stops the application: Failed to convert resource into ...
0
votes
0answers
66 views

Bind ComboBox in DataGridTemplateComlumn to data held in DataTable

i have datagrid with datagridTemplateColumn this column contains ComboBox inside it , i want to Bind datatable to this ComboBox , can any one help me <DataGridTemplateColumn ...

1 2