I have a datagrid where some of the text needs to span multiple columns. Here is an example of what I need.
Row # Image Name Price Date
1 xxx My Name $99 1/1/2009
xxx
xxx Long description goes here
2 xxx name 2 $99 1/1/2009
xxx
xxx ...
Hello,
I'm trying to scroll to the last line in my DataGrid. This is what I'm using right now:
var border = VisualTreeHelper.GetChild(mainDataGrid, 0) as Decorator;
if (border != null)
{
var scroll = border.Child as ScrollViewer;
if (scroll != null) scroll.ScrollToEnd()...
Hi,
I have a WPFToolkit DataGrid Control. The user should be able to toggle row details for individual rows. Details can be open for multiple rows at the same time.
To display or hide row details the user has to check or uncheck a checkbox within the first grid column.
How can I make the grid show or hide row details using a checkbox ...
I have a Flex DataGrid, which has some columns, i had put a item renderer, which makes all the elements in that column hyperlinked, i have a requirement, where i need to see the type of user, based on that i have to either enable or disable the hyper link.
Is there any good way , where i can get the style properties at the cell level......
I have a data table that is being filled by a stored procedure. I need to filter down the results some, so I get a data view from the default view and apply a row filter to it. I then bind this to my DataGrid. All is fine at this point. I see two pages (17 records with 10 per page). If i apply a sort to the grid though, it now shows...
I am creating a WPF data grid, and I want to be able to reorder rows by dragging and dropping, like this: I click on a row and drag it up or down. As I do, a marker shows where the row will be dropped if I release the mouse. When I do release the mouse, the dragged row is inserted where indicated by the marker.
Has anyone seen any artic...
If i create a datagrid on a silverlight page and bind it to a domaindatasource / ria services then i automatically get features like sorting/resizing/reordering of columns.
When i copy the exact same code into a usercontrol then the column headers lose these features. Is there something obvious im missing here?
Edit: I noticed that when...
Does anyone know of any plugins/extentions to the YUI Datatable that will allow column sorting similar to how a sharepoint grid works.
I'm looking for something that works/looks a bit like this from sharepoint (click on the clumn header, and a drop down appears with options to filter the datatable based on the data in that column):
An...
I added few extra columns, and now these stupid X are back but only on the first line on certain columns. By X I mean the background the cell is crossed over like a large x. I used to have this issue before and solved it by setting the alternating color to white. Nothing else has been changed aside from adding 3 extra columns to the data...
.
Hi,
Good morning.
Would you please let me know a reference document or web reference for the following:
Datagrid with Displaying (along with paging), Editing, Deleting and Sorting of records in an ASP.NET application
Thanks and Regards..
Shruthi Keerthi.
.
...
I'm using a datagrid/table construct and the data is appearing over the column headers and two check boxes are appearing.
<style type="text/css">
@import "StyleSheet.css";
@import "js/dojotoolkit/dijit/themes/pfga/pfga.css";
@import "js/dojotoolkit/dojo/resources/dojo.css";
@import "js/dojotoolkit/dojox/resources/Grid.cs...
I want to design the property window in Silverlight by using DataGrid. It will have two header columns. The value header can have the different types of controls. It might have combobox, textbox and other controls.
Here is the view for the datagrid.
Name--------------Type of the control(Control to display)
DisplayText-------TextBox
Typ...
Hi,
I am playing a little bit with the DataGrid. I found the ICollectionView which allows filtering and grouping, but based on reflection. I know how to filter ObservableCollections, no problem there.
But currently I am a little bit stuck with the grouping feature. I want to use the DataGrid to display the data grouped by Names. Or Num...
I need to read data from a csv file & display it as a data grid.The csv file contains name value pair i.e. column A will contain name & column B will contain its value.Also the user can add a blank row to the end of it & insert data manually by clicking on an add button.The user can select any row & delete the row completely by pressing ...
I'm using the code below to insert data into a SQL table from a datagrid, the datagrid has 5 rows but only 4 are inserted into the table, the first row is missed off. I've narrowed the problem to updateTable below. Can you spot the problem? After an hour of trying I can't.
private void updateTable(OdbcConnection conn)
{
...
Hello,
I've a
List<DetailObject> someList;
which looks like this:
public class DetailObject
{
public string Titel { get; set; }
public int Value1 { get; set; }
public int Value2 { get; set; }
public int Value3 { get; set; }
}
Does anyone know how I can use (with DataGrid.AutoGenerateC...
Hello,
Does anyone how I can add a fixed last row / footer row to the WPF Toolkit DataGrid?
I'd like to display a "summary" at the bottom of all Column Values.
Thank you.
Cheers
...
Hi,
I am using a WPF Datagrid with a RowDetails panel where the RowDetailsVisibilityMode is set to "VisibleWhenSelected" and the SelectionMode="Extended" so that multiple rows can be selected and hence display RowDetails, as below:
<dg:DataGrid x:Name="MyGrid"
ItemsSource="{Binding Path=MyItems}"
AutoGenerateC...
I was trying to implement Grouping and paging in silverlight 3's datagrid, I found ways to do the both with help of PagedCollectionView class,
but the problem is I need tradition ASP.Net datagrid like paging, how could I do that? any Idea?
...
I'm using the WPF DataGrid from CodePlex and I need to get Virtualization to work with grouping.
This question is on topic and points to an MSDN Example but it only covers ListControls with with simple (i.e. single 'column') DataTemplates.
Grouping and Virtualization seems like a pretty common use case for a Grid. Is there a standard...