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
How Sub Level displays its bands without inhiriting it from the parent Main View at DevExpress Grid Control
I'm using DevExpress 10.2 For WinForms with .Net Framework 4.0
I have a form that contains grid having bands and this grid has Main View and Level inside it
so it sounds like a banded grid inside another banded grid.
as shown below:
the major…

MeqDotNet
- 718
- 2
- 8
- 24
0
votes
2 answers
Format currency correctly in DevExpress Grid Control
So I've seen other questions on this, but I can't for the life of me make my grid format my float as currency. Here's my simple project, it has a grid control called gridcontrol1 with 4 columns, I want the last one to be currency, the other 3 to be…

Kevin DiTraglia
- 25,746
- 19
- 92
- 138
0
votes
1 answer
Devexprerss GridControl Datetime Column AutoFilter
I want to customize autofilter row
I create template for autofilter row and set gridColumn AutofilterRowEdiTtemplate to my template
Its works for general column but for datetime column always show dateedit in Autorowfilter
i dont want dateedit to be…

abadakhshan
- 35
- 1
- 6
0
votes
1 answer
How to populate data to GridControl from Web Service?
I have a problem with adding rows/cells values to GridControl.
I am using Web Service as data source.
My web service function runs perfectly and returns an xml type of…

choz
- 17,242
- 4
- 53
- 73
0
votes
1 answer
DXGridControl Is not working CellStyle
I would like to change the Background, FontWeight, Foreground in dxg:GridColumn.
I wrote this code but unfortunately it does not work.
How can I fix it?
public class CellViewModel {
public string Value { get; set; }
public string FontWeight…

user1616554
- 1
- 1
0
votes
1 answer
DevExpress GridControl sorted list
How to get a list of items, that is in sorted gridControl?
I need to create a new List with only values, sorted by GridControl.

Artem Makarov
- 874
- 3
- 14
- 25
0
votes
1 answer
DevExpress Xpf how to add a LookUpEdit to a gridColumn in code
I've got code in WinForms which i need to convert to WPF DevExpress.
I need to create LookUpEdit in code and add it to a created gridColumn.
The code in winforms:
var editor = (RepositoryItemLookUpEdit)…

user975869
- 275
- 1
- 5
- 12
0
votes
1 answer
How can I have changes in gridview updated to datatable that i created in code
I create a datatable in code and set it to a gridcontrol (DevExpress component) to show it like the code here (add one row to datatable and set it as datasource of gridcontrol):
DataTable PersonFamiliesDataTable = new…

hamze
- 7,061
- 6
- 34
- 43
0
votes
2 answers
Get gridcontrol records as an array
How can I get gridcontrol records as an array?
I set an array as a datasource for a gridcontrol (devExpress component).
PersonFamily4grid[] tmpPersonFamily = new PersonFamily4grid[PersonFamiliesCOUNT];
for (int i = 0; i < PersonFamiliesCOUNT;…

hamze
- 7,061
- 6
- 34
- 43
0
votes
3 answers
GridControl Refresh
I have a grid control in vfp9 on a form. And I have a button witch deletes (with pack) the current record. After I delete the record the grid doesn't find the resource. It remains only an empty rectangle.
I maked something like this:
DELETE…

Liviu Solcovenco
- 75
- 4
- 13
0
votes
1 answer
GridControl Navigation
In VFP9 I have a grid control ,witch show the records from a database table. And also I have a command button wherewith I want to navigate from a row to another. I tried with thisform.grid1.ActiveRow = thisform.grid1.ActiveRow +1 ,but this doesn't…

Liviu Solcovenco
- 75
- 4
- 13
0
votes
1 answer
Get data into gridview devexpress
In gridcontrol devexpress, I display "employee_id" column as combobox. I want to fill data from EMPLOYEES table into "employee_id" column in gridcontrol devexpress. Thanks.

giang
- 1
- 1
- 3
0
votes
1 answer
adding a numericup down in a syncfusion grid control
Reg windows forms syncfusion, grid control
I am trying to add a popup box like the one we have in xcel. On rightclicking a cell and then insert, a small popup box asking how many rows needs to be inserted.
So this is what I have done
private void…

user575219
- 2,346
- 15
- 54
- 105
0
votes
1 answer
DevExpress Horizontal GridControl
I would like to know. How can I make WPF GridControl like it.

Mitosha
- 57
- 6
0
votes
1 answer
Filtering Issue with DevExpress Wpf GridControl
here my problem: I'm developing an application using DexExpress wpf GridControl 10.1, c#, Net 4.0 and I use checkbox dropdown lists to filter columns. Now when I set a filter on a column, and then try to filter on a second one, on the second filter…

Luigi Boschetti
- 1
- 1
- 1