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
-1
votes
1 answer
How to set children control's height depending on container height
I have a GUI which looks like this:
The user control is in a ContentControl on my MainWdow.xaml.
I would like the Grid to take the whole…

ColVodori
- 27
- 2
-1
votes
1 answer
c# devexpress data transfer between two grids with double click
I have 2 gridviews. I list my products in the first grid and I want to transfer the product to be selected by the user from this list by double-clicking on the next grid. (with double click) How can I do it?
enter image description here

Sinem Hür
- 1
- 5
-1
votes
2 answers
Radio button in Gridcolumn won't trigger binding
I have two devexpress gridcolumns with one radio button in each.
In code behind when I am setting a value to the properties binding to the radio button, the binding takes. But when I am changing selected radio button in the view the selected won't…

Tinsley
- 75
- 7
-1
votes
1 answer
Pass Devexpress grid control values to texbox
How can I pass the selected row column values in gridview to texbox using Devexpress Gridcontrol?

hashim malik
- 19
- 7
-1
votes
1 answer
How to get all row values from Gridcontrol in WPF
I wana get data row in Gridcontrol from the first to the last row. I tried this code but it did work correctly. When I Debug,
string.Concatreturn :
SELECT * FROM viewdulieu2 WHERE Khachdat = N''
This is my Window.xaml
DataTable a = new…

j.doen
- 11
- 5
-1
votes
2 answers
How to make CheckBox as checked and unchecked so that user can modify it in Grid Control?
I have designed a grid control with 20 rows and 3 columns.
In first column I have puted some hardcoded string and in second column I want to put checkBox with checked unchecked behavior so that user can modify it.I have written code for this in…

Ankit Raman
- 79
- 1
- 14
-1
votes
1 answer
How to add a Combobox or browse option in one particular row of a grid control using CMFCPropertyGridProperty class
I have Property Grid Control in which i have to add different controls in each of the rows, like Combo box, Browse option, Radio option etc. I am using CMFCPropertyGridProperty class to add the string to this controls

Sandeep Kumar
- 85
- 1
- 3
- 10
-1
votes
1 answer
Why does my GridView control in c# aspnet display an old table below the new table?
The objective i'm trying to achieve is to display filtered data in the same gridcontrol.
So what I do is e.g A-DROPDOWN clicked, display XDATA in GRIDVIEW1. Then FilterA selected, this filter calls the "ADROPDOWN" clicked event again and then…

Shuyaib Abdullah
- 127
- 1
- 10
-1
votes
1 answer
wpf gridcontrol bindint to liq to ef query is slow
I have a usercontrol in wpf which contains a gridcontrol
I've set gridcontrol datasource to a linq to ef join query like this:
var x = from B in x.B join E in X.E on B.E_ID equals E.E_ID
select B
gridcontrol.datasource = x.tolist();
in xaml…

pooooooneh
- 19
- 7
-1
votes
1 answer
Gridcontrol becomes blank
I am using open source code "GridCellCombo.cpp" for grid control. I am stuck with issue. When we click on the combobox sporadically combo box becomes blank. It will not display any items. When I debugged I found that in EndEdit closing the window is…

AKJ
- 65
- 1
- 6
-1
votes
1 answer
c# wpf devexpress grid control how to get object of parent row
I have a grid control data table within cell template combobox. i'm listening for selectionChanged event from it (using mvvm), and can't get a GridRow parent from a child (with VisualTreeHelper.GetParent((ComboBox)EventArgs.Source)).
Can you help…

bmo
- 111
- 5
-1
votes
1 answer
GridControl fill (NullReferenceException)
I have devexpress gridcontrol which I want to fill with data from predefined DataTable. This is my code:
private void SortDataTable()
{
DataView dv = GetDataTejbl.DefaultView;
dv.Sort = comboEdit.Text + " " + "DESC";
…

oljko
- 52
- 3
- 10
-1
votes
2 answers
how to sort integer and string in gridcontrol C#? this is my code :
this is the class:
public static List GetData()
{
var context = new FingerScanContext();
return (from a in context.MasterRejects
select a).ToList();
}
this is how i called the grid view:
InitializeComponent();
List mrj…

Modulus
- 13
- 4
-1
votes
1 answer
Accessing a Comboboxedit in a GridControl
I have a Gridcontrol that contains a comboboxedit.
The question is how to access it in the code-behind
The XAML
…

Wàlid
- 3
- 1
-1
votes
2 answers
How to bind data to SyncFusion GridControl in C# using Windows Application?
i am fed up with this Syncfusion Controls, these are very difficult compared to normal datagridview. where is the Datapropertyname in Syncfusion GridControl. how to bind Data to Grid Control.
gridControl1.ColStyles[3].DataSource = dt1;…

Anjali
- 1,680
- 4
- 26
- 48