A graphical user interface element that presents a tabular view of data.

learn more… | top users | synonyms (1)

1
vote
1answer
9 views

filling data grid with array collection of values objects from java

I would like to do statistics in flex. I have recuperated my array list from the java service when i clicked on a button and i recuperate the end and finish date of statistics when i test the return ...
0
votes
0answers
4 views

Dojo datagrid: sort by first value in cell layout

I have used a formatter to add some html (a link, a break and a span) on or around different values. The issue now is that the column does not sort. I think it is because every cell in the column ...
0
votes
1answer
12 views

Retrieve row number by a button's click event in DataGrid

I am adding a label and two buttons to the first column of a DataGrid: //buttons DataGridTemplateColumn dgc = new DataGridTemplateColumn(); DataTemplate dtm = new DataTemplate(); ...
0
votes
1answer
20 views

How to display data in DataGrid with Silverlight

I want to run a SQL Query like SELECT a,b,c,d FROM table1 WHERE userID.table1 = userID.table2 I want the output to go to the a DataGrid. I am using SQL Server 2012. This is a Silverlight 5 ...
0
votes
2answers
67 views

WPF MVVM Dynamic Columns Multi-Threaded

I am currently working on a C# System.Windows.Controls.DataGrid that needs to generate the columns dynamically depending on the data. It can add and/or remove columns during runtime. I am using a ...
1
vote
0answers
19 views

.Net Framework 4 WPF DataGrid Resize issue

I have been having issues with the out-of-box .net 4 Datagrid user control in our WPF application, however the problem only occurs when the application is installed and run on Window 7 OS. We ...
0
votes
1answer
16 views

WPF Datagrid - Force singleline rows

I'm working on a datagrid in WPF and I have encountered a problem. When adding a multiline string to my DataGridTextColumn, the row is expanded in height so as to fit the entire text. I wish the row ...
0
votes
2answers
16 views

Multiple cell selection in DataGrid Flex 3

I'm using a DataGrid object to diplay data in a table. Is there a way to allow multiple cell selection with DataGrid? I've seen it's posible with AdvancedDataGrid but I want to keep this as a last ...
0
votes
1answer
31 views

Hit Enter on Button Give Diffrent Result

I Have Function Export to Excel from datagridview, and i do test by try hit every button on my interface by press tab to locate the indicator to every button. but when on export button. it give me an ...
2
votes
1answer
91 views

CurrentCell is changed to a row that isn't SelectedItem in Datagrid

I have a DataGrid that is part of a DataTemplate that is assigned to the ContentTemplate of a TabControl. The TabControl's ItemsSource is bound to a collection and, as such, the DataContext for the ...
0
votes
1answer
132 views

Disable/enable button with DataGridTextColumn validation

I have this DataGrid: <DataGrid ItemsSource="{Binding CustomerXml}" Name="customersDataGrid" AutoGenerateColumns="False" DataContext="{Binding}"> <DataGrid.Columns> ...
0
votes
1answer
17 views

Adding buttons to a DataGrid in WPF

I have this DataGrid: <DataGrid x:Name="dgTimeline" GridLinesVisibility="Horizontal" AutoGenerateColumns="False" CanUserAddRows="False" CanUserResizeColumns="false" IsReadOnly="True" ...
0
votes
2answers
27 views

How to add Comboboxes to all ColumnHedares in Datagrid except for the first column in wpf?

I have a datagrid which I have replaced the headers with Comboboxes. I got this part working by using the below code in wpf, but my problem is I don't want to have the combobox for the first column ...
0
votes
2answers
19 views

Fill datagrid with dataTable wpf

I got this table that I made with data from a text file. Every line from the text I split to a array and then put it in the table, now I want to bind the table to a datagrid. Okay, I can do this by ...
0
votes
1answer
14 views

Select arbitrary text in a WPF datagrid row or cell and copy it

Scenario: I have an ObservableCollection containing log events. A log event consists out of e.g. time, date, severity and a message. I am using a WPF datagrid with data binding to display the content ...
0
votes
1answer
58 views

DataGrid Sorting doesn`t work

I have MainWindow.xaml with DataGrid <Grid> <DataGrid x:Name="dataGrid" Style="{StaticResource superDataGrid}" Sorting="DataGrid_Sorting_1"/> </Grid> MainWindow.cs with ...
0
votes
2answers
4k views

Updating GridView Row from Code Behind

When the user changes the text in the textbox's in the edit template and clicks update, when I try to grab those new values it still is graving the old value of the text box. <asp:GridView ...
0
votes
0answers
11 views

How can I change the width of the PrettySegmentedControlTableViewCell

I am using PrettyKit ios library and I want to manually change each cell's width. This above code is that each cell's width is equal. But I want to change first column maybe 30 pixel other columns ...
1
vote
1answer
28 views

Binding on conditions of multiple datagrids

I am looking for a bit of assistance on the following. My view model contains the following: A list of all jobs A list of all grouped jobs (e.g jobs in a particular category) A list of all jobs in ...
0
votes
0answers
39 views

Get a specific cell when selecting a row from datagrid

Im using a SQL database to store data. I have a datagrid where i show the data from the database. The problem is, when a user select a row in the datagrid, and click on my "Delete" button, i want to ...
10
votes
1answer
7k views

WPF MvvM DataGrid Dynamic Columns

I am searching about how to create the columns of the DataGrid from the ToolKit dynamic in MvvM way. But looks like it is impossible ! Is there some one that had to do the samething ? there is no ...
4
votes
1answer
61 views

Showing multiple headers in one column with DataGrid

I would like to have more than one property in a column like the following: Now, it's easy to create a cell template to show more than one property, but how would one go about creating a header ...
-1
votes
1answer
15 views

Binding SelectedItem of ComboBox in DataGrid with different type

I have a DataGrid which contains ComboBox as column. Let consider DataGrid having ItemsSource as ObservableCollection and ComboBox ItemsSource is List . I want to set the ComboBox SelectedItem ...
0
votes
0answers
12 views

Flex DataGrid with larrge number of columns

I have a Flex DataGrid with large number of columns, and the rendering tooks too much time ando sometimes it ends with timeout(function timeout). Is there any strategies to improve the performance ...
0
votes
1answer
5 views

Update command using grid subform

I'm putting together a simple list using a Telerik grid and a sub form (edit form?) to add or change data. So far adding a new record works great: I set up the parameters, sent them to a stored ...
0
votes
1answer
35 views

wpf dataGrid sum cell with entities

I display dataGrid in WPF and entity framework, column 2 has a price per unit column 3 has the quantity (column 4 has the discount), I want column 5 will be the summary. My question is how I can ...
1
vote
0answers
39 views

High Performance WPF Datagrid

My issue in a nutshell : we are currently using in our project the standard WPF dataGrid, which comes with WPF .NET4 and above. Unfortunately for us, the performances are horrible for the scale of ...
0
votes
3answers
30 views

How to bind to a private list in a window?

I have a window with a private List<Tuple<string, string, char>> _trasitions. In the same window there is a DataGrid called dataTrans. How to bind (preferably in XAML) _transitions to ...
0
votes
1answer
16 views

Set one property visible at a time in a Grid row in WPF

I have a Grid which has multiple rows. In First row of my grid I have a DataGrid to show some content when my Tree is clicked. If there is no content to the value clicked in the TreeView then ...
0
votes
0answers
13 views

Databound Datagridview Add rows to the top of the grid after grid sorting

I have a datagridview which is binded to xml dataset at the start. After that, I will continue to receive new data to add to the datagridview using the following. System.Data.DataSet ds = ...
0
votes
1answer
27 views

WPF DataGrid focused row in the middle of visible

I need to implement scrolling to specific item in a Datagrid. fx I Choose row Nr 355, it need to scrolled to the center of visible grid area. so far I the following Code for SelectionChanged event: ...
1
vote
2answers
61 views

Limit the Properties Bound to DataGrid in WPF using MVVM

All, a simple question. I have a MVVM application with a DataGrid which I have bound to a ViewModel using <DataGrid ItemsSource="{Binding Path=Resources}" ...></DataGrid> where the ...
1
vote
2answers
123 views

FuelUX datagrid not loading (using example)

I'm new to FuelUX so I was trying to get this to work, based on the example provided: require(['jquery','data.js', 'datasource.js', 'fuelux/all'], function ($, sampleData, StaticDataSource) { ...
0
votes
0answers
27 views

WPF DataGrid Mysterious Margin

I'm using MahApps in my project for his cool VS2012 style and trying to implement DataGrid to style it. I'm almost finished and detected a mysterious margin around the DataGrid (the same as around a ...
1
vote
2answers
82 views

Datagrid: background colour + disable of selection depending on the cell value - using trigger

There is a lot of questions about WPF datagrids on SO, but I still have to ask mine cause I just can't get what I want from those... so don't be mad with me and try to help me by answering pretty ...
0
votes
3answers
91 views

How to set background of a datagrid cell during autogeneratingcolumn event depending on it's value?

I'm still fighting with manipulation around cell backgrounds so I'm asking new question. There was this guy H.B. writing that I can actually set the cell style during the autogeneratingcolumns event ...
0
votes
0answers
27 views

Adding a new row to a WPF datagrid that is bound to an Xml file via XmlDataProvider

I have a WPF datagrid that is bound to an xml file via an XmlDataProvider and I'm trying to make it two way editable but I can't seem to create a new item. XmlDataProvider <Window.Resources> ...
0
votes
2answers
36 views

Problems updating a row-table (data grid) with jquery

Im trying to edit a row in a table(data grid). The problem is: that instead of updating the clicked row I creating a new one. What I want to to is to update the row that I click in a modal-window, I ...
0
votes
1answer
19 views

Loading data from xls-file, comparing it with data from db and displaying result in a datagrid

I have a datatable with data from file - it will be an ItemSource of my datagrid. And i am getting a datatable with the same schema from the database. I want to compare this two datatables and if ...
0
votes
0answers
12 views

How to use a dojo datagrid filter to query numeric values

I want to use the dojo datagrid filter method to display all rows that have a value for the MEASURE column greater than 5. How would I specify the JSON for the query filter?
-1
votes
1answer
27 views

how to create a wpf datagrid without binding to anything?

I want to create a datagrid without binding to anything. User can add/delete/edit data and the code will collect the data programatically. I did the following but the grid does not allow me to add new ...
0
votes
0answers
37 views

WPF DataGridTemplateColumn Header binding not working

I am using the DataGrid with some manually created DataGridTemplateColumns. Here is a code snippet of that in work: <DataGrid ItemsSource="{Binding Projects, Mode=OneWay}" ...
1
vote
0answers
38 views

Animating DataGrid rows in WPF

I would like to add an animation to a DataGrid, which is applied to every row when they are loaded. Like the following: For example in that one, each row is blurred out and gets focus. I tried ...
1
vote
4answers
9k views

In ExtJS, how to add a custom CSS class to data grid rows?

How do I add custom CSS classes to rows in a data grid (Ext.grid.Panel)? I'm using ExtJS 4.0.
0
votes
0answers
25 views

WPF Binded DataGrid keep preloaded data

Class Customer { string Type, string Name } I have a DataGrid binded to an ObservableCollection<Customer> |ComboBoxColumn "Type"|TextColumn "Name"| ComboBox Items in "Type" column ...
0
votes
3answers
30 views

C# Datagrid has extra redundant column

I have a strange problem while trying to use Datagrids in C# . An extra column is appened to my datagrid which does not look neat . I followed the tutorials that i always do DataGrid in WPF . I also ...
1
vote
1answer
29 views

Advanced templating of DataGrid specific to the data in hand

Let's say I have an object that is like: Id = 123456789 Date = 01.01.2013 CurrentItems = 20 TotalItems = 200 A = 25 I would like to create a DataGrid that is styled similar to the following image: ...
1
vote
0answers
21 views

ContextMenu for DataGrid ColumnHeader is not showing after applying this style?

If I apply this style to the WPF DataGrid, the context menu for columnheader is not showing. It shows up if I remove this style. What's wrong or missing in this style? <Style ...
0
votes
2answers
38 views

How to preprocess/convert data of a databinding?

I am creating a DataGrid that is going to define (through user-input) the X and Y values of a curve which will be presented on the same window. The curve is going to be defined by a Path containing a ...
0
votes
1answer
36 views

Removing the sort arrow from DataGrid programmatically in WPF

In my WPF application, I have a DataGrid with some columns that displays my sortable data. The user can sort and subsort whichever column he wants. I added a button that should clear the sorting and ...

1 2 3 4 5 126