Questions tagged [rowdetails]
32 questions
13
votes
6 answers
DataGrid RowDetails Width problem
Suppose I have a DataGrid that is defined like this
…

Fredrik Hedblad
- 83,499
- 23
- 264
- 266
11
votes
1 answer
Animating WPF DataGrid Row Details
Can anyone help me animating the WPF DataGrid row details when it's opened and closed (e.g. slides open like an accordion when the row selected and slides close when the row is not selected)? I need a simple proof of concept.
Thanks in advance for…

Mohammed A. Fadil
- 9,205
- 7
- 50
- 67
10
votes
3 answers
How to programmatically access a datagrid row details control
I've got a datagrid with some defined columns and then a row details template. How do I access a control in the row details template within the code behind? I've got a button that I want to programmatically enable/disable, but I can't figure out how…

BrianP
- 1,857
- 6
- 20
- 27
8
votes
1 answer
Method for Allowing Scrolling of RowDetail content in WPF DataGrid
I have a datagrid that displays items with two columns of text row data and a larger free text detail that I'm displaying via a rowdetails template with just a border and a textblock.
The problem I have is that the text details are often larger than…

mwtb
- 261
- 2
- 9
5
votes
4 answers
WPF datagrid collapse details row on click
I needed to collapse the details row of a WPF DataGrid when a user clicked on it, and re-display it when they clicked again. I also wanted to preserve the DataGridRoDetailsVisibilityMode of VisibleWhenSelected, using single selection.
I came up with…

Yelnic
- 541
- 2
- 6
- 6
3
votes
1 answer
Implementing row details with XamDataGrid
Right now i am trying to implement something like the RowDetails feature of the WPF DataGrid into the XamDataGrid. What i have tried to do (and failed until now):
1.) Replace ExpandableFieldRecordPresenterStyle
In the FieldSettings i replace the…
user604613
2
votes
2 answers
User control inside datagrid row detalis
I would like to show my user control inside row details.
I have a complex data structure and cant show all items(just a few) inside datagrid, so I would like to open another control and show it inside row details. I had previously created(designed)…

Martin Ch
- 1,337
- 4
- 21
- 42
2
votes
1 answer
Unable to scroll listbox in wpf datagrid row details when IsDeferredScrollingEnabled is set to true
I have a wpf datagrid with IsDeferredScrollingEnabled set to true. I have a listbox inside row details template. When I try to scroll the listbox by dragging its scrollbar, its not scrolling because of IsDeferredScrollingEnabled. Any thoughts would…

John
- 307
- 1
- 4
- 15
2
votes
1 answer
WFP datagrid rowdetails verticalscrollbar not working
I have a datagrid with rowdetails (also a datagrid). When I expand the rows the verticalscrollbar doesn't show. See screenshot below:
Below is my xmal code for the datagrid

Heisenberg
- 764
- 6
- 20
2
votes
1 answer
Adding row details to DataGrid in XAML
I made a wpf DataGrid which invokes from a list of file names and their score.
The grid works just fine, and now I'm trying to make it available for the user to click on a row and it reveals the file content itself (text files).
The text string is…

Dean Cazes
- 21
- 3
2
votes
1 answer
Displaying RowDetails Programmatically
I have a DataGrid (the official one) with SelectionUnit="Cell". When the user selects a cell, I'd like to show the row details for the corresponding row. This is apparently not the default behavior, and I can't seem to figure out how to accomplish…

davidtbernal
- 13,434
- 9
- 44
- 60
2
votes
2 answers
WPF DataGrid gets wrong height when used with RowDetails
I have a problem with the new DataGrid component that comes with .NET4. The problem occurs when using RowDetails. With RowDetails the total height of the grid is increased when an element is chosen. This is necessary to show all Rows and the…

stiank81
- 25,418
- 43
- 131
- 202
2
votes
1 answer
How do I set mouse focus to a WPF datagrid's row details?
So I am using WPF and the MVVM pattern. I have my datagrid's ItemSource property bound to a collection of domain objects in my ViewModel. The datagrid also has a RowDetailsTemplate defined which helps me modify all of my properties on my domain…

CatGuardian
- 321
- 4
- 8
2
votes
2 answers
Wpf datagrid changing state from readonly to editable at runtime
I am new to WPF development yet. I just quickly created a sample to recreate the scenario. I am switching the IsReadonly Property of the datagrid in rowdetailsview based on the checkbox in the parent row.
Everything works fine except in one…

mchicago
- 780
- 9
- 21
1
vote
2 answers
How do I open links in jQuery server side Datatables through the jQuery ColorBox?
So basically I am using jQuery Datatables server-side functionality with PHP to retrieve a table with details from MySQL as illustrated here
From the HTML side, the following jQuery script (1) references the PHP script that grabs the data from…

jaguarhaus
- 247
- 1
- 5
- 13