Tagged Questions
The xtragrid tag has no wiki summary.
5
votes
1answer
237 views
Autoheight of vertical column header in C# using DevXpress
I used this http://www.devexpress.com/Support/Center/p/Q233111.aspx (the code is in VB so I converted it to C#) to get vertical column headers. I get the vertical headers but my problem is some of ...
3
votes
2answers
308 views
How can I change font color in gridview DevExpress c#
How can I change the font color on gridview of DevExpress?
All the solutions I have found are about changing the forecolor and the backcolor..
I want to have a red font in case a value in a cell is ...
3
votes
1answer
311 views
How to do data binding for particular columns in Dev Express XtraGridControl?
In .net grid view Control we have a Property called "DataPropertyName" where we can specify column name which you want to bind
example Code:
dataGridView1.Columns[index].DataPropertyName=
...
3
votes
2answers
834 views
How to disable row header in devexpress xtragrid
I want to know how to disable row header in Devexpress xtragrid (grid control ) . In normal we are disabling the property of DataGrid by row header visbile into false.But how to disable in Devexpress.
...
3
votes
3answers
5k views
XtraGrid Suite - is there a way to add a button or hyperlink to a cell?
I'm working with the XtraGrid Suite made by DevExpress. I can't find any sort of functionality to do this, but I'm curious if you can add a button or hyperlink to a grid cell.
Context: I've got an ...
3
votes
1answer
592 views
system.convert to custom object
we have a custom datatype object "Money" which is used to represent money values in our application. at the moment we are trying to implement some custom formatting within a grid component however the ...
3
votes
1answer
13k views
Dynamically adding Devexpress GridControl to C# windows application
I want to add Devexpress GridControl dynamically. At runtime I want to show the Filter Row. Also I want to have a button on the form, that have the dynamically created GridCotrol, and when the button ...
3
votes
1answer
528 views
Xtragrid repositorycombobox
My repositorycombobox is showing blank option on default. How do I make the option 1 of the combobox to be the default value.
I want to make this repositorycombobox to act like dropdown with no edit ...
2
votes
1answer
101 views
List of unique values in a Column in XtraGrid
Is there a way to get the list of unique values in any Column in XtraGrid. When I click on the column title for filtering, it shows the list (see the attached image '}' ).
Is there any XtraGrid ...
2
votes
1answer
194 views
DevExpress: XtraGridView Custom column binding
Lets say that I have the two following classes
public class OtherClass
{
public string OtherName{ get; set; }
}
public class MyClass
{
public string TheName { get; set; }
public int ...
2
votes
1answer
695 views
DevExpress XtraGrid custom RowCellStyle eventhandler and column sorting problem
My xtraGrid has a custom style eventlistener:
FooGridView.RowCellStyle += new DevExpress.XtraGrid.Views.Grid.RowCellStyleEventHandler(FooGridView_RowCellStyle);
private void ...
2
votes
2answers
312 views
How to remove menu option when right clicking on DevExpress Xtra GridControl Column Header?
Any body please help me how to do remove menu option when right clicking on DevExpress Xtra Grid Control Column header
Thanks in advance
2
votes
2answers
1k views
How to change column type of a devExpress xtra Grid Control to CheckBox type column?
In .net grid view Control Column we have a Property called "ColumnType" where we can specify column type which you want
Any body please help me how to do this in DevExpress Extra Grid Control
...
2
votes
1answer
1k views
Dev Express GridView rows count
In System.Windows.Forms.DataGridView it is DataGridView.Rows.Count. But how can I get Dev Express GridView's rows count?
Thanks!
2
votes
1answer
757 views
Retain the value entered in the cell of DevExpress Xtragrid
I am using DevExpress Xtragrid control in my C#.net windows application.
I enter some value into the first cell of the grid and if i go to second cell , the value entered in the first cell ...
1
vote
1answer
98 views
XtraGrid hardcode one of column's values and use Auto-filter
I have a grid that is binded to a dataset that is populated from a stored-procedure.
One of the columns of the dataset (InstrumentName) is not taken from the stored-procedure, but is empty.
I want ...
1
vote
1answer
80 views
DevExpress: Is GridView.RowUpdated supposed to fire for row deletions?
For example I have a KeyDown handler that calls view.DeleteRow(view.FocusedRowHandle) but the RowUpdated event on the gridView does not seem to fire.
Am I missing something?
1
vote
2answers
178 views
How to prevent XtraGrid TextEdit from losing focus when moving cursor beyond contents
I am using an XtraGrid from DeveloperExpress with a column holding strings, edited via a TextEdit control.
When a user enters edit mode (the editor is shown), the text is automatically selected, just ...
1
vote
2answers
505 views
DevExpress RepositoryItemLookUpEdit
I am binding the Grid with a business object which contains a field Country (which is another business object containing ID and Name). I want to display the country name set to the "Country" in the ...
1
vote
0answers
463 views
DevExpress XtraGrid ExportToXlsx showing checked/unchecked for RepositoryItemCheckEdit instead of checkbox images
We're using an devexpress XtraGrid to show and export various data to Excel.
After an upgrade to DevExpress 11.1 there was a functionality change to improve Excel export.
Excel export change
...
1
vote
0answers
109 views
Data structure and way to fill/read DataGrid FlexGrid XtraGrid
There is lots of objects of various kinds with properties in it.
I want fill that objects in grid, click on one of them and in separate grid edit properties of that object.
What data structure and ...
1
vote
1answer
488 views
Problem with the DevExpress XtraGridView control
I have one xtragrid control on my devxpress form . I've created the columns of my grid at runtime when i load the form . I'm developing the Field chooser for my grid view which is situated on the ...
1
vote
1answer
481 views
DevExpress XtraGrid Group By Column behavior on DataSource change
My XtraGrid is assigned a DataTable as its DataSource:
MyXtraGrid.DataSource = MyDataTable;
If I drag a column up to the group by panel, and then expand a few of the groupings, and then, ...
1
vote
2answers
272 views
Delete multiple rows from Grid
How do I delete multiple rows from XtraGrid ? I am using DevEx version 10.2. Any tutorials available ?
1
vote
1answer
229 views
Using DataRelations and DevExpress Grids - Hide expansion control
I have a bit of a weird issue. We use DevExpress controls to do all our Windows Form development. Anyway, I found a perfect use for the DataRow.SetParentRow/GetParentRow methods in my grid. So I ...
1
vote
1answer
71 views
Show control depending on object data in XtraGrid Column
I need to show control depending on object data in XtraGrid cell of column. i.e. different coltrol in cell depending on data. Any tutorial or demo ?
1
vote
1answer
448 views
about repositoryItemCheckEdit
I've added repositoryItemCheckEdit in a xtragrid control's column. And i'm having total 3 columns in my xtragridview. From which two columns will be filled with the help of fields from my table when ...
1
vote
3answers
550 views
about devexpress xtragrid's datasource property
I'm using devexpress's xtragrid control. In my application i'm setting datasource property of gridcontrol at runtime but it not show my updated table value when my form display's .
how to resolve this ...
1
vote
1answer
293 views
Problem During showing of ContextMenuStrip in XtraGridview control
I'm having one ContextMenustrip & DevExpress XtraGridView. And i shown the ContextMenustrip to the user when user right clicks on the XtraGridView, for that i used XtraGridView's MouseDown() ...
1
vote
2answers
2k views
How to maintain selected row of XtraGrid control
I'm developing an application of the xtragridview control in that application when i'll double click on row from the xtragridview that time one popup form opens . then the focus of the parent window ...
1
vote
1answer
258 views
Dev Express binding RTF data to XtraGrid
Is there any way I can use to bind Rich Text Format (RTF) data to the XtraGrid control?
1
vote
1answer
2k views
DevExpress XtraGrid checkbox check not registered unless focus changes
We have a databound XtraGrid on our Windows form. One of the columns is a check box. The problem is as follows: when users check the checkbox and click OK button, the checkbox, while visibly checked, ...
1
vote
1answer
2k views
XtraGrid - Export To Excel
I'am using Developer Express XtraGrid Component to show some data. I have 2 XtraGrid on my Windows Application Form. Both grids have more than 200k+ lines, and 8 columns of data, and I have export to ...
1
vote
1answer
371 views
How to retrieve a business object from DevExpress SearchLookUpEdit?
I need to retrieve a business object from a DevExpress SearchLookUpEdit when the control is bound to a collection of custom objects.
I can get the currently selected row object via GetSelectedDataRow ...
1
vote
1answer
180 views
.net winform Grid Alternatives?
I am using vb.net / Winform 2010.
I am looking for a free (or very cheap) alternative to the DataGridView, one that looks more like what I see on ads for XTraGrid. Something that will multiple lines ...
1
vote
2answers
2k views
How include a image in devexpress datagrid
How can set icon in Dev express data grid depending on the value returning from Database
1
vote
2answers
829 views
Why grid become readonly? How to avoide readonly grid problem?
I have a DevExpress xtraGrid which I want to bind. When I try to bind, the compiler gives an error that the gridView datasource is readonly. I tried the below approach, my code is
...
1
vote
2answers
605 views
How to get checkBox object from c# Xtragrid colum
Hai all,
Am using DevExpress XtraGrid control in C#.Net application.And binding one table values to grid,that table contain one bit field ("Authorized") so grid displaying with bit field column ...
1
vote
1answer
675 views
Entity Framework SaveChanges - how to ignore ID / Identity fields on INSERT
VB .NET 4 WinForms application.
I have a (DevExpress) grid bound to an IEnumerable(Of MyClass).
Whenever a new row is added, the ID defaults to zero (0). On trying to SaveChanges, EntityFramework ...
1
vote
1answer
984 views
Can a DevExpress XtraGrid be filled using a a Dynamic SELECT statement string
Can a DevExpress XtraGrid be filled using a a Dynamic SELECT statement string?
i.e.
SELECT * FROM Employee
or
SELECT * FROM Dependents
To fill our XtraGrids currently, we use a ORM that creates ...
1
vote
2answers
575 views
Mapping special null constant values into DBNull in a DataTable
I'm working with an existing object framework that uses special values to represent NULL for primitives int, DateTime, long. Data containing these values are added to a DataTable and displayed in ...
1
vote
1answer
1k views
Paging in Devexpress XtraGrid GrdiControl for Windows Application
How do i do paging in devexpress gridcontrol for c# windows application
Thanks in advance
1
vote
2answers
2k views
XtraGrid data source update while trying to edit
I have an XtraGrid with the datasource set to a BindingList. Some of the fields in the grid are editable. The problem is that the list gets a lot of updates for some other fields (not the ones I can ...
0
votes
1answer
9 views
DevExpress XtraGrid won't show entire cell content
We have a grid setup that has a column which can contain very large values but the grid itself isn't very tall. When the contents of the cell are longer then the grid is tall we can't scroll to see ...
0
votes
0answers
21 views
adding a checkbox and setting the checkstate in xtragrid control of devexpress
Can somebody help me with adding a checkbox on a xtragrid control of the devexpress and set the checked property based on the column bounded? I was able to bind the column and add the checkbox but ...
0
votes
1answer
68 views
Devexpress Total Sum Summary cell is blank and wont display summary
I have a Devexpress XtraGrid with a total summary cell in the footer.
The cell is displayed correctly, but there is no value in it.
I have:
Grid.OptionsView.ShowFooter = true and ...
0
votes
1answer
55 views
Filtering column by background color in XtraGrid
Is it possible to filter a column by cell background color? By default it can filter by values, and I saw that there were two modes, which I can set using
GridColumn.FilterMode
But I could not find ...
0
votes
2answers
107 views
DevExpress Xtragrid gridview inside gridview
I want to fill a cell of a DevExpress Xtragrid gridview with another gridview. Is this possible? and if its possible can someone help me with this like what should I read about for doing this..
0
votes
1answer
95 views
DevExpress XtraGrid Advanced Banded Grid View : band separator?
I have a couple of wide columns in the current grid:
Mailing Name | Mailing Description | Mailing Date
and to keep the grid narrow, I changed the View to an Advanced Banded Grid View and ...
0
votes
1answer
78 views
Devexpress: Clearing bound controls of completely filtered GridControl
I have a Devexpress.XtraGrid.GridControl that I have set the DataSource to a DataTable. I also have several other controls that have databindng to the same DataTable. This works out well so that when ...