The rowdetails tag has no wiki summary.
0
votes
0answers
73 views
JQUERY Grid Widget, Row details load from database everytime not Happening
In jqxGrid using Jquery, i have added Row Details ( data from database ), i want is whenever i open the row detail, it must load everytime. For that i added the load function in rowclick function ( I ...
0
votes
1answer
59 views
WPF Datagrid - RowDetails binding to optional property?
I'm trying to design a WPF Datagrid, where the RowDetails (a textblock) will bind to the Details string property of the grid's ItemSource elements.
<DataGrid.RowDetailsTemplate>
...
0
votes
2answers
544 views
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 ...
0
votes
1answer
237 views
Caliburn Micro Update RowDetails of a Datagrid
let me explain my problem. I am working with Caliburn Micro and have a datagrid where a ObservableCollection is being binded as an Itemsource:
private static ...
0
votes
2answers
618 views
Silverlight DataGrid: Can't seem to get the RowDetailsVisibilityChanged to fire on load of the grid?
I have a standard Silverlight DataGrid with the RowDetailsVisibilityMode = DataGridRowDetailsVisibilityMode.VisibleWhenSelected
I tried setting this property both in the XAML as well as in the parent ...
1
vote
2answers
361 views
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) ...
1
vote
1answer
403 views
How to style row header column in DataGrid
I am using ComponentOne C1DataGrid. I have been able to style it to the full extent except row header column.
How can I style it in XAML?
You can see the image:
here
Thanks,
flot
0
votes
2answers
314 views
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 ...
1
vote
1answer
296 views
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 ...
1
vote
1answer
2k views
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 ...
4
votes
1answer
3k views
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 ...
0
votes
1answer
1k views
In WPF, how do I bind in the DataGrid.RowDetailsTemplate?
I have a DataGrid which is bound to an ObservableCollection of a custom class. The collection is a property in a ViewModel, and the grid works fine, including with changes to the collection.
I want ...
1
vote
1answer
603 views
How to get grip of a DataGrid's active RowDetails
I have a DataGrid with a RowDetailsTemplate containing another grid.
I want to react on a doubleclick on a row in that detailgrid and fill the cell's content into a corresponding cell of the ...
4
votes
5answers
3k views
DataGrid RowDetails Width problem
Suppose I have a DataGrid that is defined like this
<DataGrid AreRowDetailsFrozen="True"
ItemsSource="{Binding MyCollection}"
AutoGenerateColumns="False">
...
3
votes
1answer
1k views
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 ...
0
votes
3answers
5k views
How to programmatically acces 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 ...
1
vote
1answer
765 views
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, ...
2
votes
2answers
607 views
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. ...