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
Adding column of buttons for each row in gridcontrol devexpress
How can I add a column of buttons near binded list items of gridcontrol devexpress? Binded list of items to gridcontrol as follows:
List lst = new List();
SqlDataReader sdr = cmd.ExecuteReader();
while (sdr.Read()){
AnObject…

linda22
- 89
- 3
- 14
0
votes
1 answer
Group/Ungroup Excel functionality in WinForms Grid
I want to achieve the following functionality for an XtraGrid. This is taken from Excel 2010 and is the action of Grouping from (Data -> Group Rows).
The solution I have so far is to use Master-Detail functionality of the XtraGrid, but I already…

Alin Argintaru
- 155
- 6
0
votes
1 answer
DevExpress GridControl Double_Click Storing Data
I have a SQL Insert statement that is populating a GridControl (works). I need to make the visibility false for the Primary and Foreign Keys columns.
I also want the Double_Click event to populated pre-existing textboxes, and checkboxes, based off…

Kevin Fischer
- 371
- 7
- 16
0
votes
1 answer
print preview based on gridcontrol mainview in c#
How can I printpreview in my GridControl DevExpress based on mainview.
Here is my code:
private void PrintPreview()
{
// Get your currently selected grid row
var rowHandle = gridView1.FocusedRowHandle;
// Get the value for…

aminvincent
- 553
- 1
- 12
- 43
0
votes
2 answers
Rows selection in GridControl DevExpress
In DevExpress 13 GridControl.TableView with a dynamic list when a row is deleted the row selection doesn't dissapear. It remains on the row which replaced the deleted one. When the selected row is deleted, how can I make the row selection dissapear…

Max
- 99
- 1
- 12
0
votes
1 answer
Enable in-place edit for cell in GridControl
I would like to enable in-place editing for cells in my GridControl. I have set property AllowEditing on TableView and Columns, but data in my cells still cannot be edited after doubleclick on cell. Only "copy" is enabled in context menu. I failed…

Kapitán Mlíko
- 4,498
- 3
- 43
- 60
0
votes
1 answer
How to use Oracle Grid Control management repository view to check if the "block change tracking" enabled on all dbs?
I couldn't find a Oracle Grid Control management repository view to check if "block change tracking" enabled for all Oracle 11g databases being monitored by GC 11g. I know I can query the v$block_change_tracking on an Oracle database, but there are…

Amos
- 23
- 5
0
votes
2 answers
Get Filtered or Searched result of GridControl
i used devexpress component
i set data for ItemSource property of GridControl in code behhind like this :
grid.ItemsSource = query ;
query is List
when i filtered or searched in gridcontrol , display rows changed
now i want to get the changed…

Mohsen Graphic
- 1
- 3
0
votes
1 answer
Add combobox column to gridcontrol with winforms
I have a GridControl with a loaded datatable to it (with datasource):
DataTable table = GetData();
GridControl1.DataSource = table;
How can I add a column of comboboxes?

noni r
- 23
- 6
0
votes
0 answers
c#_Devexpress set datatable to gridControl
i want to merger column in table to show
example
NameEmp | CasualLeave | SickLeave | AnualLeave
| auto | Manual | auto | Manual | auto | manual
epm1 | 1 | 1 | 2 | 0 | |
i'm try…

user4294371
- 1
- 1
0
votes
1 answer
Resize selection column width in WPF GridControl
Could we resize the width of selection column in WPF GridControl (yellow area)?

Wildan Muhlis
- 1,553
- 2
- 22
- 43
0
votes
1 answer
How to display selective items in a binding list in grid control
I have implemented below code:
gridControl.DataSource = CusColumnList
CusColumnList is of type MyBindingList which inherits BindingList, in my case T is class MyColumn. The binding works well.
But now my problem comes, I don't want the data source…

spspli
- 3,128
- 11
- 48
- 75
0
votes
1 answer
Devexpress - GridControl - Tab Key - I Want Tab Move From Right To Left
Please i am using Dev-express Grid Control and now i want when the user press on [ Tab ] Move to next Cell in the Same Row From Right to left
i tried some ways but failed to success my issue goal
thanks

ideal male
- 21
- 1
- 4
0
votes
1 answer
DevExpress GridControl cells' inner text selectable but not editable
GridControl is working like~ Excel natively:
Clicking once on the cell selects it. Copy copies the cell value and the header.
Clicking twice on the cell selects the inner text. Copy copies only the inner text.
I am working on preventing the cell…

goul
- 813
- 1
- 13
- 32
0
votes
2 answers
WPF GridControl: prevent row selection in DataControlDetailDescriptor GridControl or select master on detail selection
I haven't found any satisfactory answer or solution to my problem. I have a master - detail grid (2 levels only), single selection only. Some relevant code:

dabor
- 127
- 1
- 3
- 13