Questions tagged [devexpress-windows-ui]

Questions about controls in DevExpress WinForms libraries

DevExpress is a company that provide the WinForms Controls in order to create rich applications easily.

333 questions
1
vote
2 answers

how to use SQL datasource wizard at runtime (Devexpress) ?

there is a component in DevExpress called SQLDataSource, this component allows you to import data from any database but not at RunTime, I'm currently developing a module that import data from any database, obviously it has to be dymanique, is…
M.Othman
  • 40
  • 6
1
vote
1 answer

Contains filter search doesn't work for devexpress gridview c#

I have a grid view column called LineNumber i set the autofiltercondition to contains .as you can see here : But it doesn't work in running as you can see .and i have to enter the whole linenumber to find it . Should i set something else property…
Ehsan Akbar
  • 6,977
  • 19
  • 96
  • 180
1
vote
2 answers

Get filtered rows from devexpress gridview c#

I am using devexpress GridView in my c# application. So I initialize my GridView like this: gridControl.DataSource = new BindingList(_materialRepository.ViewMTOByDetail()) The output value of that is a…
Ehsan Akbar
  • 6,977
  • 19
  • 96
  • 180
1
vote
0 answers

Devexpress Pivot Grid Control ordering (winforms)

We are using a very old version of devexpress (version 11.something). I am trying to use the "ordering" functionality on a pivot grid. What is the area called in the red circle. How can I specify the number of columns allowed in this area. When…
1
vote
4 answers

Mask for only negative numbers

How to build a mask for user entry only negative values in DevExpress/WinForms TextEdit component? I am trying to do this, but with no success: Same question here, but this solution is not working I think it's a bug.
Vinicius Gonçalves
  • 2,514
  • 1
  • 29
  • 54
1
vote
1 answer

how i set lookupedit display format

Tables dt like this: index StartDate EndDate 1 2015/03/23 22:00 2015/03/23 23:00 2 2015/03/23 22:00 2015/03/23 22:00 3 2015/03/23 22:00 2015/03/23 22:00 I have set: lookupedit1.Properties.ValueMember =…
Liyu Ge
  • 11
  • 6
1
vote
1 answer

Custom Cell Appearance in GridView change event

I am disabling a checkbox column in a XtraGrid GridView with the following code (works as expected). Got the code from this post https://www.devexpress.com/Support/Center/Question/Details/Q423605: private void…
1
vote
1 answer

Expand filtered nodes ancestors after match?

I have a TreeList control and I've enabled the AutoFilterRow and the Extended filter mode. The filtering works fine, if I type in the filter row it does narrow down the nodes displayed, but if the ancestors are still collapsed the node matching the…
Andy
  • 8,432
  • 6
  • 38
  • 76
1
vote
1 answer

Why GridControl is creating an extra column/space after execution?

DevExpress UI controls were used for a Windows Presentation Foundation (or WPF) Application and I am trying to fix/Improve it. Several views in the application include Grids that display sort of some data to the user. The grids look normal in the…
1
vote
2 answers

Export to Excel all details from Master Detail GridView in Devexpress

I have 2 GridViews that have a master-detail relationship between them. Right now, when I have one row selected I'm able to export to excel the Gridview's detail by doing this: GridView2.ExportToXlsx("OneMasterDetail.xlsx") But what I want to do…
Eric
  • 363
  • 2
  • 9
  • 24
1
vote
1 answer

Devexpress master-detail in 2 gridcontrols

How do I display the master-detail view in 2 grids instead of one grid. Here's how I populate the grid currently and it does show master-detail view. I don't know how to set the relation or DataMember property (as shown in some examples that use…
Questions
  • 195
  • 1
  • 14
1
vote
2 answers

When using the Grid-view(on devexpress -visual c#), how do I get the values of four fields of a record when I click on that record/row?

I want to get the values of four fields of a record and later use them in an sql statement. How can I get those 4 values when I click a row/record in gridview and have each value stored in their own declared variables? The four field names are…
Valentine
  • 102
  • 1
  • 3
  • 12
1
vote
2 answers

Resize font if text doesnt fit into cell (XRTable)

How to resize cell content (font size) if it doesn't fit. I don't want word-wrap or change cell's size since the form has to fit on single page. The text might have various lengths. It might contain spaces but doesn't have to. @edit I've made a…
user2475983
  • 1,916
  • 2
  • 13
  • 20
1
vote
1 answer

Devexpress How to change progress bar control color

Can someone tell me that how to change backcolor of progress bar control. I am using devexpress bar control. I have searched and tried the ways which are explained on devexpress forum and this site.progress bar back color
Emrullah
  • 122
  • 1
  • 13
1
vote
1 answer

DataRow.RejectChanges Throwing RowNotInTableException

I have a DataTable and a Grid (actually a DevExpress Winforms XtraGrid). I create a DataView on the table that is a subset of its rows. This DataView is the DataSource of the grid. The user types in a new row into the grid and posts the change…
shindigo
  • 1,267
  • 15
  • 29