The grid control displays data by means of views. If the grid doesn't represent master-detail relationships, it displays a single View specified by the MainView property. If the main View's data source has child relations or you supply detail data manually, the grid control can display Views representing detail data. Thus, the grid control implements View management mechanisms to arrange them, provide data, specify common appearance, etc.
Questions tagged [gridcontrol]
306 questions
0
votes
1 answer
Change white background of GridControl Devexpress WPF
Please i need change background color of gridcontrol, i tried "" in the gridcontrol and in the CardView, but though I always try out white.

jhonatan299
- 21
- 2
0
votes
1 answer
DevExpress ComboBoxEditSettings SelectedChange Event in WPF
I have a problem with ComboboxEdittSetting DevExpress control, as it has no associated SelectedChanged event.
But I found another way to use
…

Ingrid Santisteban
- 1
- 1
- 1
0
votes
1 answer
Master-detail grid with IList
I have an IList which I'm passing as a parameter to a Dev Express 10.2 GridControl Datasource. Each "Foo" may have an IList or not. How should I have to do, to make a Master-Detail grid, where the Foos are the master rows, and for each Foo that…

cezarlamann
- 1,465
- 2
- 28
- 43
0
votes
1 answer
How to change the way a devexpress grid sorts rows
I have a devexpress grid control on my screen. One of the fields in the table is Room number, and is taking in a string (just in case you have room 2A or something like that). However, when I click the column header (to sort the values in either…

Sean Smyth
- 1,509
- 3
- 25
- 43
0
votes
3 answers
append new to gridcontrol devexpress
I am trying add a new row into datagridview with the button click for learning purposes. When I click the button, it deletes the old data and add the new row. But I want to append it to the grid
here is my form_load function which gets the data from…

Arif YILMAZ
- 5,754
- 26
- 104
- 189
0
votes
2 answers
Remove button Find and Clear in GridControl
like I can eliminate the botton (Find and Clean) of a GridControl, and alone to leave TextEdit.
regards
Alex

user1813375
- 101
- 3
- 12
0
votes
1 answer
Issue about Devexpress Gridcontrol in C#?
I have a devexpress gridcontrol and loaded a Xml .. If XMl has attributes then datasource getting loaded correctly .. else it fails and throws exception
-
…

Aravind Srinivas
- 251
- 3
- 8
- 15
0
votes
1 answer
OutOfMemoryException when loading large table into DataSet
I would like retrieve data from a SQL Server table containing 2M records. I am using the Devexpress GridControl and have tried a simple code like this:
DataTable dt = new DataTable();
String sqlString = "select * from LARGETABLE left join…

Herdy
- 139
- 1
- 9
0
votes
1 answer
Is It Possible to Add Multiple Repository Items in a Gridview Cells using DEVEXPRESS?
I have Datatable and I have to add Two repository items to same cell
DataTable dtbl = null;
public Form1()
{
InitializeComponent();
dtbl = new DataTable();
dtbl.Columns.Add("T1");
…

Aravind Srinivas
- 251
- 3
- 8
- 15
0
votes
1 answer
Dev Express WPF GridControl - Auto-downsize behavior
I have a DX GridControl in a * height row, like this:
...
…

Lyall
- 895
- 9
- 20
0
votes
1 answer
How to use the AdvBandedGridView as a detail level in a GridControl
I want to design a Master-Detail Grid view like that in the following Link:
http://documentation.devexpress.com/#WindowsForms/CustomDocument562
However, I want to use the AdvBandedGridView type as one of the details views, but I dont know how to…

AyaZoghby
- 341
- 3
- 7
- 16
0
votes
1 answer
How to provide if and else Formatter in Devxpress Gridcontrol using Xaml?
I am developing an app using Devexpress Gridcontrol using Xaml. In a cell Template i am having a Textblock in which i want to Display 'Open' if the value in Binding is '0' and 'Close' if it is '0'. Can this be done using FormatterString ie. Using…

Anand Asir
- 309
- 3
- 13
0
votes
1 answer
How to access ScrollViewer in DevExpress GridControl?
I have to access to ScrollViewer in GridControl to do a synchronization with my other GridControls on scrolling.
Before I used vanilla DataGrid and it was quite easy to get ScrollViewer via VisualTreeHelper and then to subscribe to the ScrollChanged…

Sergey Kuznetsov
- 518
- 4
- 10
0
votes
2 answers
Instance of Object error?
I have one GridControl in which I inserted, modified directly to the database.
I have several fields directly connected to a table Patient and one of my gridcontrol field is the id that was especielistas 1 TableSpecialistwhich has a 1:1…

user1813375
- 101
- 3
- 12
0
votes
1 answer
devexpress gridcontrol refresh datasource
with this code I populate a devexpress gridcontrol, everything is ok:
Private Sub tbccegek_SelectedPageChanged(ByVal sender As Object, ByVal e As DevExpress.XtraTab.TabPageChangedEventArgs) Handles tbccegek.SelectedPageChanged
If…

derstauner
- 1,478
- 2
- 23
- 44