A graphical user interface element that presents a tabular view of data.
0
votes
0answers
19 views
Memory leak in DataGrid - observable collection
I'm noticing a lot of memory not getting released when I dispose of my WPF DataGrid. I've been using .NET Memory Profiler and dotTrace to clean up all the references still holding onto the DataGrid, ...
0
votes
0answers
14 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
10 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
25 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
34 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
17 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
68 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
18 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
28 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:
...
0
votes
0answers
19 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
29 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
19 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
34 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
41 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
29 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
37 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
29 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
27 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
36 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
40 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
18 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
12 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
62 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
31 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
42 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
30 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
31 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
33 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 ...
0
votes
0answers
25 views
WPF DataGrid CommitEdit method call after text box edit ending
I've a datagrid with editing functionality which is having text boxes and combo boxes, and when i edited text box in one column and same time trying to save the data it doesn't giving the editing row ...
0
votes
1answer
13 views
Silverlight Simple Master Detail Binding
I have what I think is a very simple problem, but for some reason the answer is escaping me. I am creating a simple Master/Detail DataGrid in Silverlight. Most of the samples on the web display this ...
0
votes
0answers
15 views
Limiting number of characters in datagrid c#
I am trying to limit the number of characters a user can enter into a datgrid to two. The xml and code which i currently have can be seen below.
XML:
<DataGrid
...
0
votes
0answers
24 views
Passing a parameter to a usercontrol within OnRowDataBound of a GridView
I'm trying to pass a parameter to a web user control within a gridview control.
I have a web user control declared at the top of my form.
<%@ Register Src="Controls/BasicListing.ascx" ...
0
votes
0answers
25 views
Applying Ext JS on existing datagrid in jsp for sorting
I have a Java EE web application and I'm using Servlets and JSP pages in that web application.
Datagrids are already available in JSP pages. Can I implement Ext JS sorting concept in that existing ...
1
vote
0answers
32 views
TwoWay binding a table to a datagrid which has a ComboBox column and bind to another table?
TwoWay binding a table to a datagrid which has a ComboBox column and bind to another table?
I have a datagrid which is twoway bind to table Accounts. Whenever the update button is clicked, I'll ...
0
votes
2answers
45 views
How to fill a WPF Datagrid but not directly from the DB using C#
I have been banging my head against a wall for a while on this one. I'm trying to fill a WPF datagrid from a mysql database using C# .net. The problem is that I need to modify the data before ...
0
votes
0answers
43 views
Wpf C# Datagrid row columns spanning multiple rows
Is it possible to create a DataGrid looking something like this is Wpf?
I have a column with important information to display, but the text is too long to display it all horizontally. Therfore i need ...
0
votes
2answers
60 views
Mouse Double Click DataGrid row
I have a DataGrid style template that I wish to add double click behaviour to. The binding should be correct but I cannot seem to get the xaml compiling / working.
All objects added to an ...
0
votes
1answer
41 views
Data in data grid view won't show visually C# SQL
I have this data grid view like this:
But it should be like this:
The data is successfully fetched but I have to drag the cells so the data can be shown.
This is the code:
private void ...
0
votes
1answer
17 views
Print Datagrid records in WPF
I need to print datagrid records only. I used one code like this, but this one printed datagrid scroll bar also. I need only records.
PrintDialog printDlg = new PrintDialog();
...
1
vote
1answer
33 views
Make the rows of the datagrid draggable in GWT
I want to make a datagrid in which rows will be draggable so that a person can move rows up and down by dragging the rows. As row of the datagrid will be get as an element. I know how to make the ...
0
votes
1answer
35 views
WPF DataGrid bind cell background color to property of assigned Data object
I've got a DataGrid where the cells are assigned to a custom class defined below:
public class DataGridVariableWrapper : DependencyObject
{
public Variable TheVariable { get; set; }
public ...
0
votes
0answers
122 views
jquery-easyui Editable DataGrid validatebox not work with bootstrap
I use jquery-easyui Editable-DataGrid,but validatebox not work with bootstrap 2.3.1
the tooltips not show.
when I delete
<link rel="stylesheet" href="/static/bootstrap/css/bootstrap.min.css" ...
0
votes
1answer
27 views
How to get data from DB to editable table and then export to Excel?
I've been looking for a table or data grid that is editable and can get data from a MySQL database with no luck.
I tried Slickgrid but there is not a lot of documentation out there and making it work ...


