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

learn more… | top users | synonyms (1)

0
votes
0answers
8 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 ...
0
votes
0answers
31 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 ...
-1
votes
1answer
12 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 ...
4
votes
1answer
42 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 ...
0
votes
0answers
7 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
20 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
8 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
1answer
26 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
34 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
28 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
0answers
12 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
13 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
1answer
26 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: ...
0
votes
0answers
26 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
56 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 ...
0
votes
0answers
22 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
0answers
11 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
26 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
35 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
37 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 ...
0
votes
1answer
18 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
3answers
80 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
22 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
20 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
1answer
31 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 ...
0
votes
0answers
24 views

Oledb loading blank instead of Excel data in DataGrid

Why am I unable to see any data in my data grid when there is heaps of data in my Excel File. It's just showing Blank Page instead of data. My code is using System; using System.Data; using ...
0
votes
0answers
26 views

vb.net import excel to datagrid

first of all I am really new in programming... could you please help?? Here is my doubt, I have an excel file (excel 2007 ver. 12.0) that I neeed to import to a datagrid view, but I get an error ...
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
42 views

Databinding in RowDetailsTemplate doesn't work

I have simple Datagrid with binding and this one works correctly and inside RowDetailsRemplate another Datagrid but in that case binding does not work. Can you give me a hand with sorting this out? ...
0
votes
1answer
38 views

C# WPF DataGrid (ItemsSource = Database Table) - additional column: How to keep changes when (re-)sorting the DataGrid?

got a tricky question here: I have a DataGrid that's being filled (DataGrid.ItemsSource) by an Access Table. What's best practice to show additional columns for the user and keep changes in this ...
0
votes
1answer
44 views

wpf datagrid combobox binding staticresource list of keyvalue pairs

I hope someone can help me or post a link to related question, that would have the answer. I have read most of them and thats how I got this far... So I have a datagrid with 3 columns, two of them ...
1
vote
1answer
32 views

WPF DataGrid - how to suspend UI updates from databind and do a bulk update later

Having to do a lot of cell-by-cell changes in code on my source DataTable, I need a way to temporarily halt it sending data-binding updates to its bound DataGrid: I have a DataGrid bound to a ...
0
votes
2answers
31 views

WPF How to make DataGrid blank out certain columns based on a value in one of bound columns

I have a DataGrid that should display values from a datatable object. I need it to display one row for each in the datatable, but if column ShowRow in the DataTable is set to False, I need all but ...
2
votes
1answer
37 views

How can I change foreground color of cell value in DataGridComboBoxColumn?

I have a grid with DataGridComboBoxColumn and I am trying to change the foreground color of the cell (not in edit state). I know that I can workaround this using DataGridTemplateColumn but I'd like ...
0
votes
0answers
47 views

jQuery easyUI datagrid combobox displays old value

I'm using jQuery easyUI edatagrid. I have a table that I can edit the values fine, but one column has to be combobox. Everything works fine (db get's updated), the only problem is when you select a ...
0
votes
1answer
20 views

how to crawl data from asp.net control

What I am trying to do is to get data from a datagrid from a specific asp.net site... Now the problem for me is that it has multiple pages within the datagrid, so if I read the page source of that ...
0
votes
0answers
13 views

C# re-using OdbcDataAdapter

In a Form with two TextBoxes (T0, T1), a DataGrid (G1) and a Button (B1) I retrieve Data from an Oracle Database const string cn ="...." const string s_SQL = "SELECT a, b, c, d, .. FROM myTab WHERE a ...
1
vote
2answers
69 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
0answers
34 views

WPF Datagrid Column Width Issue

I have columns in a DataGrid that are being set by an ObservableCollection that is the type of a simple data object that I created. The first column has a width set to "Auto" and the second column as ...
0
votes
2answers
27 views

jQuery GridView similar to Ext JS

I am currently using the GridView from Ext JS in one project and it is very feature-rich and complete. However, I am looking for something functionally equivalent for another project. Something ...
0
votes
1answer
17 views

How to display text for the int values in datagrid cell using mvvm

I am displaying data from a table which contains a column "Status", now this column contains two values 0 and 1 0 => Daily 1 => Monthly by using mvvm structure when i bind my cell text property to ...
0
votes
1answer
44 views

Add Title to DataGrid

I have a DataGrid item on an aspx page. The columns are BoundColumns that are populated through a DataSource/DataBind from an Oracle query. What I am trying to do is add a title attribute to each of ...
0
votes
1answer
40 views

Custom grid resize in WPF grid

I am using this DataGrid (which is nothing more than a DataGrid with more stuff). I would like to be able to resize vertically the size of the grid, not the size of its rows or columns. In the image I ...
1
vote
1answer
36 views

Display query results efficiently in Razor

I've created an ASP.NET MVC 4 Web Application with Visual C# and with the "Razor" option HomeController.cs public ActionResult Tasks() { ViewBag.Message = "Tasks"; string ...
0
votes
0answers
18 views

Sorted DataGrid is corrupted by adding row on text input

I'm trying to add rows on text input in my DataGrid. However, if I sort the DataGrid prior to typing in a row (to add a new one) the DataGrid is corrupted. Two rows disappear and a blank one appears ...
0
votes
2answers
34 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
0answers
8 views

Datagrid show name of my objects .NET, how can i do to show the values from my objects?

i have a problem. i have a list of objetcs an some of my objects have inside others objects, and when i put this list into my DataSource of the grid i have this: I USE .NET 2010 my question is, how ...

1 2 3 4 5 126