0
votes
2answers
25 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 ...
0
votes
0answers
11 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
votes
1answer
19 views

Populate DataTable with Datagrid data in WPF

I want to store the data of a datagrid in a datatable. How can I populate the datatable with that data? Need a way to access data in a row and column format rather than a item format. So, a solution ...
0
votes
0answers
21 views

display data from 3 tables into DataGrid

I have 3 tables in my DB: Country, CarModel and Availability (it has reference to country and carModel tables). I need to display data in winforms DataGrid like that: header should be CarModel, ...
2
votes
1answer
157 views

Reload DataTable bound to Datagrid in WPF

I want to display a SQL table in my WPF Datagrid, writing SQL query at runtime. I've built my View (simplified) and ViewModel associated: View: -----------------MyDataGrid.xaml----------------- ...
0
votes
0answers
107 views

Pivoting data in vb.net dataset and represent in datagridview

I have a dataset ... which has to be shown in the datagridview as shown below... Similar concept of excel pivot table (using column labels).. Plz guide me to do this..!! DataSet DatagriView ...
0
votes
3answers
361 views

How to set selected item of a DataGrid programmatically in WPF with MVVM application?

I have bound the DataTable to the DataGrid control. How can I set the selected item programmatically ? Example In my view model I have a property of type DataTable to bind the DataGrid private ...
0
votes
1answer
249 views

How to select a DataGrid row in WPF with MVVM when the DataGrid is bound to a DataTable

I have successfully bound a DataTable to a DataGrid control in WPF with MVVM. (I have defined the DataTable in the viewmodel.) Then I have defined a DataRowView type property and bound to the ...
0
votes
1answer
83 views

DataGrid column change when null

I'm using Infragistics UltraGrid which acts like a regular datagrid. My grid looks like this : ------------------------- | Red | Blue | Green | ------------------------- | null | null | null | ...
1
vote
2answers
372 views

MVC4 Send Datatable to View

I need to pass a list of TestModel into my view. This list will then be used to populate a grid. However, I want the members of TestModel to be created dynamically from headers in a datatable loaded ...
0
votes
0answers
37 views

Trying to keep track of DataGridViewCell but it mysteriously resets

I am trying to do a custom highlighting for certain cells in a DataGridView which is bound to a DataTable via BindingSource. The way I have it set up is having another class that contains the initial ...
0
votes
1answer
135 views

About using DataGrid in WPF w/ DataTable under MVVM

(C#) Recently I am trying to display SQL results from Access MDB to DataGrid upon pressing a button in .xaml. So far I succeed in using ICommand to trigger the SQL and return the results inside a ...
0
votes
1answer
72 views

DataTable as DataGrid.ItemsSource

hi i want to bind a DataTable with multiple columns to an DataGrid in codebehind var dt = new DataTable(); dt.Columns.Add(new DataColumn("1")); dt.Columns.Add(new DataColumn("2")); ...
0
votes
0answers
98 views

DataGridCell style not working properly When Binding a DataGrid to a DataTable in WPF

I have a code behind written DataTable that has borders as contents, and I'm binding the ItemsSource of a DataGrid to this DataTable, I set its DataGridCell to a style so it can go with those borders, ...
2
votes
1answer
169 views

Add combobox to datagrid that is linked to a datable

My program is a WPF application written in VB.net. I accept answers geared toward C# as well, as I should be able to understand and/or convert. I have a dataTable that I fill with data from my MySQL ...
0
votes
0answers
165 views

Merging two DataTables into a DataGrid

I have two DataTables in a DataSet in C# (the first DataTable contains a unique set of identifiers and some associated data, but the second DataTable will contain more than one record per foreign key ...
0
votes
0answers
47 views

Unable to view data in datagrid when bound with datatable in ASP

DataTable schedule = new DataTable(); schedule.Columns.Add("Application", typeof(string)); schedule.Columns.Add("Module", typeof(string)); schedule.Columns.Add("Start Date", typeof(DateTime)); ...
0
votes
2answers
78 views

Session variable content not updated

Consider the code below: \DataTable dt =(DataTable) Session["dfdtemptable"]; // Remove all int i = dt.Rows.Count; while(i> 0) { dt.Rows[i-1].Delete(); ...
0
votes
1answer
127 views

UI column reordered DataGrid data into DataTable

I have a WPF DatagGrid, in which user can sort items and reorder columns. Now I want to copy the exact DataGrid data to a DataTable, data which is shown in DataGrid after reordering items and sorting ...
3
votes
1answer
244 views

WPF Binding to a DataGrid from a DataTable of Objects

I'm still new to Databinding and have been reading and researching this question for hours now, and I'm hoping someone can at least point me in the right direction. What I have is a DataTable ...
0
votes
2answers
368 views

WPF: How to change the background color of a datagrid cell on runtime

I am displaying two datatables (let's call them left and right) in two datagrids and it works. However what I want to do is to allows users compare two rows (left and right) based on the selection and ...
0
votes
2answers
170 views

Adding table rows through For-Loop

I am trying to write a program that requires me to add data to a datagrid. There's a pattern, but I can't seem to figure out how to decently get this data done through a For-Loop. This is my code ...
0
votes
0answers
345 views

Binding DataGrid to DataView of DataTable doesn't update new columns

I have a DataTable that I create rows and columns for from another part of the program. I bind the default DataView of this DataTable to a DataGrid. I update my DataTable in the following format: 1: ...
0
votes
2answers
311 views

Convert present Datagrid data into DataTable

How to convert present Datagrid data into a DataTable? I have filtered the datagrid now i want only filtered data into a datatable. Datagrid.ItemSource or DatagridView is not helping here.
1
vote
0answers
83 views

Multiple DataGrids on one DataTable

I've got two CollectionViewSource bindings to the same data table Client. Each CollectionViewSource has a separate DataGrid binded to it: (dg1: DataGrid) ----> (cvs1: CollectionViewSource) ---- ...
0
votes
1answer
413 views

How to save HeadColumn in DataGridView to Excel?

I make datagridview export to excel but Headcolumn don't show in excel files. Sample result (in Excel) 1 | mani | 213/435 | 0-892-342234-09 2 | ware | 1/67 | 053-36-49 But I need result (in ...
1
vote
3answers
2k views

Adding values to specific DataTable cells

I'm wondering if it's possible to add values to specific DataTable cells? Suppose I have an existing dataTable and I add a new column, how would I go about adding to the new column's rows without ...
2
votes
2answers
275 views

Conditional DataGridView to DataTable conversion

I've a DataGridView that looks like so: DGV | Col 1 | Col 2 | Col 3 | I was wondering if it is possible to remove the first column when I'm writing to a datatable so that ...
0
votes
0answers
47 views

Sort a range in DataGrid

I have been searched this for days but got no luck so far. As you know, there's a range sort function in Excel. You don't always need to sort the whole column, you can just perform sorting on selected ...
0
votes
1answer
123 views

Clearing DataTable while editing DataGrid

I've got a DataTable bound to a WPF (.NET 3.5, WPFToolkit.dll) DataGrid. This is inside a very large client-server application. The server can asynchronously send data to the client "engine"; this ...
1
vote
1answer
54 views

how to identify modified cells of a datatable?

MY users want to download data into a spreadsheet, modify and then upload to save it. I have written a feature to download table into a tab separated file and upload the modified file. Now they want ...
1
vote
2answers
1k views

Changing a DataGrid's column width

I'd like to change a DataGrid's column width, but I keep receiving an error. This is how I fill in the DataGrid: tabel.ItemsSource = Item.getItemByCategory(category).DefaultView; getItemByCategory ...
1
vote
1answer
1k views

How do I add an image to an DataTable?

What I'd like to do is add a column containing an image to a DataTable. The DataTable will be given as source to a DataGrid after creating the columns/rows. I tried the resolveUrl method and it ...
0
votes
0answers
278 views

How to filter a datagrid when it's itemsource if the default view of a datatable

I am trying to filter a datagrid to show only the rows that contain the search term. The data from a database is loaded to the datatable first and then the itemSource of the datagrid is set as the ...
2
votes
2answers
243 views

How to refresh row of DataGrid when DataGrid is binded to DataTable?

DataGrid is binded to some DataTable. User changed some values. I want to mark changed row with some color. I've done it. But how to notify DataGrid, that current row values have been changed? P.S. I ...
0
votes
1answer
44 views

Creating DataGridColumn which displays 1 of 2 different pictures, fed from a datatable

So i got this DataGrid in which i manually defined all the columns: <DataGrid AutoGenerateColumns="False" <lotsofstuff> ItemsSource="{Binding}"> ...
0
votes
3answers
502 views

DataGrid bound to Datatable not refreshing Values

I've a DataGrid which is bound to a DataTable ("LastDatasets") When I refresh the DataTable in a Timer via this code: if (LastDatasets != null) { var maxRow = LastDatasets.Select("id = ...
0
votes
1answer
172 views

ToolTip issue skipping Rows in Datagrid

private void datagridSignal_MouseMove(object sender, MouseEventArgs e) { this.toolTip.Hide(datagridSignal); this.toolTip.RemoveAll(); DataTable dt = GetSignalTable(); ...
3
votes
2answers
2k views

Dynamic tooltip depending on mouse over on a row in a datagrid(NOT datagridview)

I am trying to make it so that when the user mouses over a row in my DataGrid / dataview, each row would display a different tooltip outcome. I cannot really figure this out. with DataGrid how can I ...
0
votes
1answer
366 views

DataGrid does not properly bind to DataGrid if AutoGenerateColumns is false

I've been driving myself nuts with this and I'm hoping I'm just missing something obvious. I have a DataGrid I want to bind to an in-memory DataTable. With AutoGenerateColumns set to true, I can edit ...
0
votes
0answers
1k views

Data Table Not Binding to Grid View

I am creating a data table and trying to bind it wit a grid view. Code: DataTable timeTable = new DataTable(); DataColumn colSubject = new DataColumn("Subject Name"); ...
0
votes
2answers
447 views

WPF DataGrid custom sort: reorder items in ItemsSource

I have my custom grid which inherits from DataGrid (from WPFToolkit) that has around 10000 items in it. The built-in sort is very slow. As such I have written a separate class that keeps a running ...
1
vote
1answer
544 views

c# DataGridView getting contents from a Row/Column

I have a DataGridView with 4 columns. When a user double clicks the row, I want to revtrieve data from the 1st column of the clicked row. private void ...
0
votes
2answers
370 views

Datagrid that is bound to DataTable does not display any rows that are added dynamically to DataTable

I Have dataGrid like that: public class myGrid : DataGrid { DataTable Table = new DataTable(); public myGrid() { } protected override void OnInitialized(EventArgs e) { ...
0
votes
2answers
439 views

Find DataGrid Column and Row Index based on cell value of column

I need to do the following with a DataGrid. E.g. Col A Col B 1 A 2 B 3 C 4 D For instance where Col A = 3. I then want to change the ...
1
vote
1answer
402 views

How to prevent NewItemPlaceholder row in a ComboBox bound to the same DataTable as a DataGrid in WPF

I'v a wizard style application that uses pages and the user can navigate between them either by Next and Previous buttons or by using a navigation bar to directely access certain pages. On one page ...
2
votes
2answers
536 views

Edits to dynamic DataTable not updating in DataGrid

I have a DataTable and when I alter (add,modifiy..ect) it wont reflect on the DataGrid which is bound to the DataTable. ItemsSource="{Binding TableData,Mode=TwoWay,IsAsync=True}" Thats the binding ...
0
votes
1answer
1k views

Add DataTable to DataGrid in WPF

I saw some answers related to my problem. I was tried that answers and still i can not solve this. private void btn_View_Click(object sender, RoutedEventArgs e) { try { DataTable objDataTable ...
0
votes
2answers
972 views

How to set default column size(height,width) of columns of Data Grid View in C#

I have a data table. After creating this table, I use data grid view to show data by simply using the code: mydataGridView.DataSource = myTable; By this, dataGridView creates columns and rows ...
0
votes
2answers
322 views

Rows are not insert in windows form datagrid

I want to insert data grid using datatable and define the grid columns in a program. Please help me what`s wrong with this code??? Following error is occur "Unable to cast object of type System.String ...

1 2