Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
5answers
4k views

Unable to set DataGridColumn's ToolTip

I tried the following: <tk:DataGridTextColumn Header="Item" Binding="{Binding Item.Title}" ToolTipService.ToolTip="{Binding Item.Description}" /> And I don't see any tool tip. ...
3
votes
4answers
5k views

WPF DataGrid Sync Column Widths

I've got two WPF Toolkit DataGrids, I'd like so that when the user resizes the first column in the first grid, it resizes the first column in the second grid. I've tried binding the width of the ...
2
votes
1answer
109 views

In Silverlight how do you set the HeaderStyle of a dynamic DataGridColumn

I have a data grid and I am dynamically adding columns to this grid from my ViewModel. The user has a settings dialog where they can manage which columns appear in this DataGrid. The problem I'm ...
2
votes
3answers
2k views

WPF DataGridTextColumn Tooltip

Is there a way to add tool tip to DataGridColumn header and still retain the sorting functionality. The below code doesnt work(It doesnt display the tooltip) <toolkit:DataGridTextColumn ...
2
votes
1answer
380 views

Find root element of DataGridColumn

I am using the LogicalTreeHelper.GetParent() method recursively to find the root elements of various other WPF elements. This works fine with almost everything, but it fails for the DataGridColumn ...
2
votes
3answers
3k views

Automatically resize width of DataGridCoulmn/AdvancedDataGridColumn to fit content

I want that the DataGridColumn or AdvancedDataGridColumn would automatically resize it's width so as to fit the content within.. I'm new to flex. I want to implement something like HTML tables. The ...
2
votes
1answer
3k views

“freeze” one column in flex datagrid

I'm using a datagrid to display a column of date ranges and several columns of data. I'd like to make the first column (the date ranges) fixed; i.e. that column stays in place when the user scrolls ...
1
vote
1answer
86 views

How to create two DataGridViewButtonColumn in just one column?

I'm currently working with DataGridView in C# and I find it hard to create two DataGridViewButtonColumn in just one column. I can only create one DataGridViewButtonColumn in a column by doing : ...
1
vote
1answer
115 views

DataGridColumn binding in Code

I am searching a simple method through which i can bind my DataGridColumn with a Datatable columns on the fly. I should also be able to define the width of each column. Example :- If My program ...
1
vote
1answer
100 views

Binding current columns header as text for a text block inside datatemplate

i am working with a silverlightdatgrid and i have a style for each column header as below <Style x:Name="mytemplate" x:Key="mytemplate" ...
1
vote
1answer
756 views

How to get DataGridColumnHeader from DataGridColumn?

My code is as follows :::: void mainDataContextObj_CutSelectedColumnEvent(string columnId) { IList<DataGridColumn> columns = dg.Columns; for(int i=2; ...
1
vote
3answers
4k views

Flex DataGridColumn display multiline string data

Is it possible to display a multiline string in a Flex DataGridColumn? i.e. Display: Text line one. Text line two. I've tried putting "\n","\r","&#13;" when storing the string but ...
1
vote
1answer
4k views

WPF DataGrid ComboBox Column: Propagating Header Combobox throughout column

Hey there! Here's my question: I've got a Datagrid in WPF and I have a first column that is a DataGridComboBoxColumn. What I'd like to do is to have a header for that column also with a combobox: ...
0
votes
2answers
54 views

Cache variables in dataprovider

I've got a model class with a bunch of Number variables that change frequently. They all dispatch their custom events, thus are bindable. In my UI, a couple of those class instances are bundled into ...
0
votes
1answer
57 views

WPF DataGridColumnHeaders - How to style these elements for different states?

I need to style DataGridColumnHeaders so I right click on DataGrid >> Edit Additional Templates >> Edit ColumnHeaderStyle >> Edit a Copy Here is the xaml that this gives: <Style ...
0
votes
0answers
81 views

Column Highlight and Selection in Spark DataGrid (Flex 4.5)

What I am looking for is a way to implement column highlight and column selection in Spark DataGrid. I tried to handle this in the itemRenderer by listening for GridEvent.GRID_ROLL_OVER event and then ...
0
votes
1answer
76 views

Wpf DataGrid Column splitting

I want to put a column to specify range in a wpf datagrid. For this, i am thinking to take one column with header "Range" and i want to split that into 2 columns like "Minimum" and "Maximum". Is it ...
0
votes
2answers
134 views

DataGridViewImageColumn don't display the value - why?

I want to display some images in my dataGridView, so I create DataGridViewImageColumn with default image (Properties.Resources.test), add it to dataGridView and try to insert some values to cells. ...
0
votes
3answers
154 views

WPF DataGridColumn won't let me set “.width = double.NaN” for auto-sizing columns. “Value should not be infinity” error?

I have a WPF DataGrid and I am setting up columns manually in code behind. I am trying to set the column size to Auto with the following code: customBoundColumn.Width = double.NaN; But then at ...
0
votes
1answer
62 views

Is it possible to make a DataGridView, DataGridColumn, DataGridCell mimic a specific behaviour in excel?

Technologies: Visual Studio .NET 2008 I'm wondering if anyone is aware of a way to force a column in a datagridview to behave similarily to Excel. Currently, this is what the data looks like: A) ...
0
votes
0answers
141 views

Silverlight: Binding to DataGridColumn.ActualWidth

Trying to create some pretty "super-headers" for a DataGrid. Easy enough in WPF, I created a wrapper and bound in the ActualWidth properties of the columns the header is meant to span. Stays the ...
0
votes
0answers
150 views

WPF toolkit datagrid show/hide columns missing header style

I'm applying a Style to a DatagridColumnHeader. When I load the DataGrid, this is working correctly. Now I want to be able to show and hide columns thru a ContextMenu. I'm using the Visibility ...
0
votes
1answer
121 views

How to listen to a custom event dispatched by a renderer in Flex?

I'm having the following problem: I've implemented a custom headRenderer for my DataGridColumn. The idea is to have a dropdown menu when clicked on the column header. The problem is I don't know how ...
0
votes
1answer
52 views

How to Show primary key data?

I have two tables: Transactions and Accounts. Transaction has a foreign key IDAccount from Accounts Table. I assign datasource property of Datasource property of Datagridview to Transactions Table. ...
0
votes
1answer
975 views

cannot find Name of DataGridColumn programmatically

I found the Columns collection in my datagrid, and was hoping to iterate through it to find a certain column Name. However, I can't figure out how to address the x:Name attribute of the column. This ...
0
votes
1answer
265 views

Getting dataFields of DataGridColumn into ArrayCollection

I have a DataGrid with 3 DataGridColumns. All 3 of them have separate dataFields. I need to get the datafields into an ArrayCollection and pass it to a funciton. I dont want to hard code the ...
0
votes
1answer
402 views

silverlight column header disappers on applying header style template

I have a Silverlight DataGrid with two columns. The headers of these two columns header have to be shown with a text box and column header title or name so that the text box can be used for ...
0
votes
1answer
807 views

How do i make some of my datagridcolumns non editable or readonly if my flex datagrid is editable

How do i make some of my datagridcolumns non editable or readonly if my flex datagrid is editable?
0
votes
1answer
139 views

Problems with ActualWidth not being recalculated

How come ActualWidth of a DataGridColumn is not affected by changing the value of its Width property but it is when I change the value of its MinWidth ? In other words how does ActualWidth get ...
0
votes
2answers
181 views

Flex Datagrid Column not displaying the value

We have a Datagrid: <nross:ScalableDataGrid id="grid" dataProvider="{model.practiceJoinRequestThickList.practiceJoinRequestThicks}"> <nross:columns> ...
0
votes
1answer
2k views

WPF - DataGrid Column with Width=“*”, but MinWidth to Fit Contents

What would be the best/right way to have a set of DataGrid columns have proportional width (Width="*"), but to have their MINIMUM width be at least the width of their content? At the moment, if I use ...
0
votes
1answer
429 views

flex4: how can i add a GlowFilter to a mx:DataGridColumn?

Hiya. I'm building an application using flex 4. Using <mx:DataGrid> to display a table. I would like to add a <s:GlowFilter> to a DataGridColumn. how can I do so? thanks!
0
votes
1answer
1k views

Flex DataGridColumn with array of objects as data provider

I have a datagrid that uses an array of objects as the data provider. The objects are essentially key/value pairs: { foo:"something"} { bar:"hello"} { caca:"lorem"} The datagrid has 2 columns. The ...
0
votes
1answer
424 views

Selecting and Setting Style to DataGridColumn after passing the DataProvider

I have a Datagrid thats being populated by different Arrays... (headers/columns change for the same DataGrid)... I would like to Select a Column of the Datagrid after it was generated by the ...
0
votes
1answer
1k views

Flex: How is data passed from DataGridColumn.itemToLabel to DataGrid.itemRenderer.set(data)?

I have a DataGrid whose dataProvider is an Array of int Arrays (each with different lengths). Since each row has variable size (and I want to display all the data), I decided to extend DataGridColumn ...
0
votes
1answer
425 views

Silverlight 3.0: How to bind DataGridColumn to an ICommand wherein the DataGrid is bound to an ItemsSource

I have a SL3 DataGrid bound to a collection. One column of the datagrid is a HyperlinkButton column and I want to bind the click event of the column to an ICommand present in the VM. pseudo code: ...
0
votes
2answers
696 views

Silverlight DataGridColumn AttachedProperties

I am attempting to create an AttachedProperty for a DataGridColumn within Silverlight 3.0 and I am having some issues. Here is the AttachedProperty: public class DataGridColumnHelper { public ...