Questions tagged [xtragrid]

Grid control for Windows Forms applications from DevExpress

XtraGrid is a Windows Forms control built from C# by the company DevExpress. It is used for building very rich grid controls for the Windows(R) family of operating systems using the .NET framework. This component is part of WinForms Control Suites a product from DevExpress.

402 questions
0
votes
2 answers

How to find which check boxes are checked within DevExpress XtraGrid?

I am working on a desktop application (VB.NET). I have a form with the Dev Express Xtra Grid. Within the grid, I have first column as unbound check box (Repository Item). Right now I have made the functionality so that user can check/un-check the…
manish chavda
  • 19
  • 1
  • 3
0
votes
1 answer

how to select cell focused cell Value by focusing in Cell in grid view

I want that when I enter in any cell of gridview then that cell value should be selected. Meana focused cell value should be selected on focusing in Gridview Cells. Can someone help me with this?
user1448783
  • 263
  • 3
  • 5
  • 9
0
votes
1 answer

Can't set font styles on AdvancedBandedGridView

Is it at all possible to set font properties; height, family and style in DevExpress views? I use the following code to set the specified properties: advBandedGridView1.Appearance.BandPanel.Font.Bold =…
KingMikel89
  • 45
  • 1
  • 4
0
votes
2 answers

Click on Groupcaption in LayoutView

i have an Xtragrid, where iam using a Layoutview. In my card i got two Groups with some content in it (no grouprow!). Is it possible to fire an click event, if the user click on the groupcaption? It is a normal group! For Example select 3 textedits…
Sebi
  • 3,879
  • 2
  • 35
  • 62
0
votes
1 answer

DevExpress LayoutView cardchange

i have a XtraGrid with and LayoutView. I use carousel to show my cards in this view. Is there a possibility to react on a "ActiveCardChanged" event or sth. like this. I just found "FocusedRowChanged" but this just react if i click the active…
Sebi
  • 3,879
  • 2
  • 35
  • 62
0
votes
1 answer

DevExpress XtraGrid - how to disable cell merging

I'm using DevExpress XtraGrid and faced with problem. When cells in under the same column have the same values, they merge in one. But i don't need it. Here is printscreen of table: There are two rows. Last two columns have merged. How can i…
Nate
  • 827
  • 3
  • 18
  • 29
0
votes
1 answer

Hide checkbox from filter in devexpress gridView (xtragrid)

I've a DevExpress XtraGrid control some columns and an unbounds column as boolean (so checkbox appears) for users to select the rows/items. I have applied filter as well. On column with checkBox in the filter row a checkbox appears at runtime. I…
Brij
  • 11,731
  • 22
  • 78
  • 116
0
votes
1 answer

column.OptionsFilter.ImmediateUpdateAutoFilter how to set it at run time

I need a mechanism that is not sending a filterquery for every keystroke the user types in the AutoFilterRow because this is to slow. can I catch some events after a user types a keystroke in a column of the AutoFilterRow ? I mean, when user ends…
jakob
0
votes
1 answer

XtraGrid has been modified

I need to know if an XtraGrid has been modified (value changed or rows added). I can make a boolean var and change it on GridView_CellValueChanged: void suppGridView_CellValueChanged(object sender, CellValueChangedEventArgs e) { isModified =…
Zyku
  • 1,429
  • 2
  • 23
  • 37
0
votes
3 answers

DevExpress XtraGrid - how to update grid layout

I am using DevExpress grids, there are way to save layout, but I have additional question: Is there possible to update already saved layout, without overwriting it, but only updating, for example columns, which were changed?
Edgar
  • 1,120
  • 4
  • 28
  • 53
0
votes
2 answers

how to create an unbound column relate to a foreign key inside a grid

i would like to create dynamically an unbound column in an Xtragrid control devexpress ; there is the scenario : i have a grid bound with data from Payment Datatable , fields are " Payment_ID , Customer_ID " so on and so forth , what i would like…
0
votes
1 answer

Binding LookupEdit Repository

I've three lookupedit repositories (for three columns) in a devexpress xtragrid control. I want to bind lookupedit2 based on a value selected from lookupedit1 and lookupedit3 based on lookupedit2. I can only see the populated elements when I click…
aby
  • 810
  • 6
  • 21
  • 36
0
votes
1 answer

Changing other columns value onselectedvaluechanged event in combobox in XtraGridView

Is there a way to get handle of row of which the selectionvalue is changed in combobox? Let me try to explain it using example. In GridView, I have two columns, Name, Type Type column has combobox, with values 1 and 2. What I want to do is on…
Eternal Noob
  • 2,717
  • 5
  • 27
  • 41
0
votes
1 answer

xtraGrid NewRow and Entity Framework

orderBindingSource.DataSource = _orderEntity; orderLineBindingSource.DataSource = _orderEntity.OrderLines; xtraGridOrderLine.DataSource = orderLineBindingSource; How to achieve the following tasks? 1/ When a user begins typing on the NewRow, an …
user1104916
  • 103
  • 1
  • 11
0
votes
2 answers

Can detail row use the same headers of master row on master-detail grid?

I have a DataTable holding many data which some of them is relative. My objective is group relative records together and only show one of them until the user manually expand it to see all other records on that group. First, I used group mechanism…
Tu Tran
  • 1,957
  • 1
  • 27
  • 50
1 2 3
26
27