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
2 answers
How to get the sorted data from devexpress GridControl
Suppose i sorted the gridcontrol from their fields, now i want to get the grid control all rows in a order it is sorted.I am able to get grid all records by using
(gridname.ItemsSource as ICollection).Count
but not able to get in the order it is…

Rahul
- 5,603
- 6
- 34
- 57
0
votes
2 answers
DevExpress Grid Control datasource
i'm using grid control in DevExpress reports when i set data source dynamically to my grid control its not showing a output, anyone please help me to get.
this is my code
DataTable dtJobOrder = new DataTable();
string DTQuery =…

user3243047
- 1
- 2
0
votes
1 answer
devexpress gridview control with password column
I have a simple DevExpress gridview in winform application, I keep passwords in the grid and I want them to be look liked "*" when the password cell is not focuesed. if the cell is focused, I want to display the real password.
I have this code on…

Arif YILMAZ
- 5,754
- 26
- 104
- 189
0
votes
3 answers
Getting data from detail row
How can i get data from devexress gridcontrol's detail row via double-click.
If i focused on child row gridview's double click event doesn't catch.
i tried this method, but my request is catching data by double click
private void…

gökhan
- 13
- 1
- 7
0
votes
2 answers
Get the Row the user Right Clicked on in a Grid before they click on an item in the Context Menu
I've got a DevExpress GridControl, which has a ContextMenuStrip with 2 Items on it.
I want to be able right click a record in the GridControl and launch the user's default browser and search for a term using their default search engine with one of…

sab669
- 3,984
- 8
- 38
- 75
0
votes
1 answer
How do I make a DevExpress GridControl column fill remaining space in the grid?
I have a GridControl where the first column is "Name", whose width I need to be variable, followed by several other columns whose width remains constant. If I was using the Telerik DataGridView, I would set the column width to *, but the DevExpress…

ProfK
- 49,207
- 121
- 399
- 775
0
votes
1 answer
Devexpress gridcontrol checkbox
Hello i have a problem with checkbox in gridcontrol(winforms dexexpress). I have three collumns 'Check','Name', 'Descr'. The user can apply sorting on collumn for example 'Name' and then he checked checkbox('Check') on some row. I want to get…

Cospel
- 493
- 1
- 14
- 32
0
votes
2 answers
C# DevExpress GridControl Rows
I wanna know how I can transform this to GridControl code instead of DataGridView.
foreach (DataGridViewRow row in (IEnumerable)this.dataGridView1.Rows)
{
Data.SomethingA item = new Data.SomethingA
{
…

Hacking Games
- 63
- 1
- 5
- 14
0
votes
1 answer
Load .txt File to GridControl (DevExpress)
I was searching in the NET but didn't found anything useful for my case .
I'am using DevExpress/GridControl ... and I have no idea how I can load .txt in GridControl with two Columns (Split on txt ==> '/t' )

Hacking Games
- 63
- 1
- 5
- 14
0
votes
0 answers
Devexpress GridControl rows savedata
I have a sample GridControl and it's dataSource = List
When I run the app, I first enter a cell value, when I click enter to move to the next cell, I lost the value of the last cell;
I mean when I tape anything in any cell I lose it when I move to…

Rad
- 4,403
- 4
- 24
- 25
0
votes
0 answers
Disassociate row selection between two devexpress gridcontrols that are bound to the same bindingsource
I have created a form that has a GridControl in it that is bound to a BindingSource upon instantiation. I intend to have the user be able to have multiple instances of this form open at the same time, while being able to have different filters…

Jake Smith
- 2,332
- 1
- 30
- 68
0
votes
1 answer
Conditional formatting a GridControl cell based on a value of a property in the viewmodel
I have found quite a few examples about conditional formatting of rows and cells in a DxGrid but none of them fit my purpose.
I want to format background color and font-boldness of a cell, based on other properties of the row's viewmodel. Suppose my…

Rob Vermeulen
- 1,910
- 1
- 15
- 22
0
votes
1 answer
Post data to Ms access Database file from GridControl
I have a GridControl which reads the value from a access database and shows it in it.
Whenever i change the value in gridcontrol that value is not posted into access database file ,which is a default behavior of it.
the xaml code is:
…

Vivek Saurav
- 2,235
- 4
- 25
- 46
0
votes
2 answers
Tooltip is not displaying in MDIChild Form
I am using devexpress gridcontrol in my desktop application. But I am facing a problem with tooltip.I used the repositoryHyperlinkbutton and it has 3 buttons in it named view, edit, insert
Now I want to display a tooltip for that three Buttons. I…

Chetan Sanghani
- 2,058
- 2
- 21
- 36
0
votes
2 answers
ComboBoxEdit in GridControl shows no Popup on Click
I have a ComboBoxEdit in a GridControl, which is embedded in a LookUpEdit.
I want that the ComboBoxEdit shows values depending on a "Id" and a converter.
My problem: I can click on the button with the arrow in the ComboBoxEdit, but then there is no…

MarcelD
- 43
- 4