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
0
votes
1 answer

devexpress bandedgridview thick border around band in paint event , scrollbar issue

I am using devexpress bandedgridview in windows forms , I wanted to create thick borders around band in bandedgridview, from following links I used solution for…
Ramesh
  • 438
  • 4
  • 13
0
votes
1 answer

How to get Selected Value from DevExpress RepositoryItemLookUpEdit

I have 1 DevExpress.XtraBars.Bar control in the form. I have Added 1 RepositoryItemLookUpEdit on that menu Bar now I want to get selected value on 1 button Click event private void barButtonItem2_ItemClick(object sender,…
pramod maurya
  • 123
  • 2
  • 2
  • 11
0
votes
1 answer

DevExpress TreeListLookUpEdit : how to set specified "tiers" as invalid choices

Our treelist lookup displays a three-tiered hierarchy. The first two tiers, as shown by the indentation level, are merely navigational/organizational (categories) and are not valid EditValue choices. They should simply expand as nodes. For…
Tim
  • 8,669
  • 31
  • 105
  • 183
0
votes
2 answers

Extend items from the "Buttons" collection in "TcxButtonEdit" in Delphi VCL

I'm trying to extend the collection "Buttons" of type "TcxEditButtons". The purpose is to add an "OnClick" event and a "Shortcut" property on all buttons of a legacy TcxButtonEdit component. I started by overwriting the "Properties" property with…
AnselmoMS
  • 467
  • 3
  • 18
0
votes
1 answer

Globalize with Devexpress Angular 2

Has anyone used Globalize with Devexpress dateboxes? Cannot find how to make it work, obviously I would like to localize date format for countries like England/Germany/USA etc...
0
votes
2 answers

Is there a DevExpress DateEdit mode where users can type numbers without slash delimiter

Users who are used to working with another software package would like to type just the numbers of dates, without slashes: 0 9 1 8 2 0 1 7. They have developed "muscle-memory" for dates and are pretty grumpy about having to enter the slashes. This…
Tim
  • 8,669
  • 31
  • 105
  • 183
0
votes
1 answer

how to remove or hide tree node in dev express navbar control containing treelist, using code

how to remove or hide tree node in dev ex press navbar control containing treelist, using codeemphasized text foreach (ToolStripMenuItem mi in mastersToolStripMenuItem.DropDownItems) { if (mi.Text == "Batch") …
0
votes
2 answers

In DevExpress Controls, the Property VisibleIndex of BandedGridColumn does not work

I write the following code to hide the particular column: (_view as BandedGridView).Columns[j].VisibleIndex = -1; And this worked However, I want to change the order of the column by following code: (_view as BandedGridView).Columns[j].VisibleIndex…
jack Chen
  • 11
  • 8
0
votes
1 answer

Colums.AddRange is to slow

This code takes 15 sec to execute: this.gridView1.Columns.AddRange(Coloms.ToArray());//the number of Coloms is big What can I do to speed it up?
jack Chen
  • 11
  • 8
0
votes
2 answers

In DevExpress.XtraGrid Control ,How to set the height of the row to adjust the big text

The width of the column is fixed,and I hope that the height of the Row can be adjusted automatically. PS: gridView1.OptionsView.RowAutoHeight = true; does not worked Thks
jack Chen
  • 11
  • 8
0
votes
1 answer

DashboardViewer PivotDashboardItem PivotGridControl Drag Exception

i would like to explain my circumstance briefly, I use DashboardViwer item and i load xml to it onload which has been created and saved by DashboardDesigner. Then, i fill DashboardObjectDataSource and i add it to dashboard data source to set it to…
berkay
  • 21
  • 10
0
votes
2 answers

Use CheckBoxList in DevExpress vb.net Assign & Evaluate?

Hello my code example is : /* bdEmpresa (BindingSource) Contains: selet idEmpresa,Nombre,Acceso from Empresa Result 1, Empresa1,true 2, Empresa2,false 3, Empresa2,true */ clEmpresas.DataSource = bdEmpresa clEmpresas.DisplayMember = ?…
0
votes
1 answer

Check if grid is scrolled all the way to the bottom

In the current project I have to implement custom infinite scrolling, meaning that when the user scrolls the page down so the last row becomes at least partially visible I have to load another bulk of data from the database. The problem is to detect…
Dmitry Volkov
  • 1,347
  • 1
  • 18
  • 33
0
votes
1 answer

How can I change value in another column based on some other column (v.b dev express)

I am using Grid from devExpress to display some data from database, I also implemented RepositoryItemLookUp because I needed to see some values in my column as dropdowns and here is the code: `Dim riLookup As New…
Roxy'Pro
  • 4,216
  • 9
  • 40
  • 102
0
votes
1 answer

DevExpress XtraGrid bound to List : how to show change in data immediately in the GUI?

I have an XtraGrid and a VerticalGrid on the form. Both are bound to the same List. The XtraGrid is like a navigator. Here's a hypothetical example; ignore the specific use case: OrderId|OrderDate|DateShipped 123| 2017-05-01| <-…
Tim
  • 8,669
  • 31
  • 105
  • 183