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
0 answers

How to set running sum in extra Gridview

Hi i am using extra gridview from developer express i want to make sure that is it possible to set running sum on a column thanks
user1448783
  • 263
  • 3
  • 5
  • 9
0
votes
1 answer

XtraGrid & DataNavigator control issue

I'm have a GridControl with 12 Records and I am using the DataNavigator control for navigation between the records. When I click on any record within the gridview(for example 3-rd record) the DataNavigator showing something like: Records 7 of…
RealSteel
  • 1,871
  • 3
  • 37
  • 74
0
votes
1 answer

Binding Data at Runtime with DevExpress to Specific Column with DevExpress Windows Form

I made WinForm application with DevExpress, and it's a part of my code(C#): public partial class XtraForm1 : DevExpress.XtraEditors.XtraForm { private DataTable _Tbl; private DataTable CreateTable(int RowCount) { _Tbl = new…
0
votes
2 answers

Event located immediately after DataSource Update from ActiveEditor in Grid

What I need to do is calculated the value of one field in the grid, based on the values of other fields in the grid. I need to run this calculation After the value in one of the dependent cells is changed, but only if the value was a Valid entry.…
Nevyn
  • 2,623
  • 4
  • 18
  • 32
0
votes
1 answer

xtragrid binded to entity framework

my working environment is C#, Visual Studio 12, entity framework 5 DBContext, SQL Server 2008R2. the generated entities sets are generated as Hash sets. xtraGrid.DataSource = _order.OrderLines; when I type data in the new row, data disappears when…
user1104916
  • 103
  • 1
  • 11
0
votes
1 answer

How to bind an advBandedGridView at run time?

I am new in the using of DevExpress. I need to design and bind a complex DataGrid. I have designed it using the Designer. The datagrid is of type Master-Detail, and it contains the 'MainGrid' and other detail grids. One of them is of type:…
AyaZoghby
  • 341
  • 3
  • 7
  • 16
0
votes
1 answer

Different combobox items for each grid row

I have successfully created a grid with parent rows which can be expanded into a child row. I would like to have a combobox in a column in the child row which has different items depending on values in the parent row. How can I populate the…
Michael Sandler
  • 1,290
  • 3
  • 17
  • 30
0
votes
1 answer

DevExpress XtraGrid - Change/disable a cell in column2 when column1 changes

I have 2 columns I'm working with in an XtraGrid. When Column1's value changes, I'd like to perform some logic and possibly change the value of Column2 and disable Column2 as well. You can see my code below, but I have 3 problems: My…
WEFX
  • 8,298
  • 8
  • 66
  • 102
0
votes
3 answers

How do I add an event inside of an XtraGrid GridColumn?

I have the following column defined inside of an XtraGrid. The column consists of dropdowns that force a user to choose one of 3 options. How can I wire an event that fires each time a user changes the value of a…
WEFX
  • 8,298
  • 8
  • 66
  • 102
0
votes
1 answer

DevExpress XtraGrid LayoutView - how to show images

I have a data table with two field: skin_name and image_path. The sample skin images are stored on the HDD. Now, I would like to show the skins in a GridControl via LayoutView (Carousel mode). I loaded the data in the gridcontrol, now, how could I…
derstauner
  • 1,478
  • 2
  • 23
  • 44
0
votes
1 answer

Check if grid is being filtered by object

I have placed radiobuttons above an XtraGrid in a WinForm and apply a filter to a particular column when the user clicks a particular button. I need to keep the buttons in sync with the filter even if the user manipulates the filter manually. I can…
Michael Sandler
  • 1,290
  • 3
  • 17
  • 30
0
votes
1 answer

How to add to the GRidViewColumnMenu Color und Font Editors

I use Xtragrid. I would like to change the default popupmenu columnmenu GridViewColumnMenu and add ColorPieker and FontEditor to change color of cells in the Column and font of the column. Add to the standard menu column two editors have failed.…
Nick
  • 1
  • 2
0
votes
1 answer

How do I populate an XtraGrid dynamically?

I have a grid that needs to show data from a large table. I don't want to load the whole table at once as that will be hard on memory. I'm aware that there is a virtual load on server mode but I'm loading from a local csv file and not using any sql…
EvilWeebl
  • 689
  • 1
  • 8
  • 16
0
votes
1 answer

How to make focused row highlighted by border on XtraGrid

Currently, I can highlight focused row by changing background appearance color in RowStyle event. But it does not provide to change border of that row. I tried override DrawFocusRectangle of XPaint but it will not be shown in case the grid is not…
Tu Tran
  • 1,957
  • 1
  • 27
  • 50
0
votes
1 answer

Setting DataSource of DevEx xtra GridControl

Initially my DevEx xtra GridControl's mainView has a Column with field F1. (I had used reflection to add a column to the mainview .) Now at runtime ,i want to change the dataSource. The new dataSource has a field F1. How do i make sure that only…
KhannaB7
  • 265
  • 5
  • 17