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

Migrating from Syncfusion to DevExpress controls

My existing application is using Syncfusion controls v10.104.0.44 but now due to some syncfusion support contract renewal issues we are migrating our application to DevExpress controls. I am trying to check feasibility for replacing the controls but…
nectar
  • 9,525
  • 36
  • 78
  • 100
0
votes
1 answer

How can I get the item in a row of a DevExpress GridControl?

I want to know how I can assign the value of an item in a row to a variable. If I double click in any position of the row, I want to assign the value of an item in a row, for example (0, y), to a variable. Will be grateful if you provide something…
user6250188
0
votes
1 answer

Mask format conditioned

Using the next code: I would like to select the mask format in base of a random value. Kind of(pseudocode): if (value1 == 1) { …
Kenzo_Gilead
  • 2,187
  • 9
  • 35
  • 60
0
votes
1 answer

set chart type property in devexpress chart control c#

I created a chart in my dashboard of my program as you can see : I initialize the data with this code in my load_form chartControlMIVBaseDateTime.DataSource = _materialIssueVoucherRepository.ViewImivBasedOnDates().ToList(); //…
Ehsan Akbar
  • 6,977
  • 19
  • 96
  • 180
0
votes
1 answer

DevExpress - Winforms - How do I float a widget outside the main window?

I am using a sample code as mentioned at https://documentation.devexpress.com/#WindowsForms/CustomDocument114785 however I cannot make it float outside the main window as it does in the DevExpress Sample Demo "Free Float in Widget View"
Rohit Sharma
  • 6,136
  • 3
  • 28
  • 47
0
votes
1 answer

Gridview not sorting properly on DateTime coloumn

Private Sub GridViewLog_StartSorting(ByVal sender As Object, ByVal e As EventArgs) Handles GridViewLog.StartSorting SetDefaultSort() End Sub Private Sub SetDefaultSort() Dim col1 As DevExpress.XtraGrid.Columns.GridColumn Dim col2 As…
ND's
  • 2,155
  • 6
  • 38
  • 59
0
votes
2 answers

How to change exact text value become consist or contains?

Is there a way to convert it, from exact value text become consist of? So I don't need to type Ballet instead of Bal. Here's the code: private void button6_Click_1(object sender, EventArgs e) { ColumnView View =…
user6516744
0
votes
1 answer

Highlight row cell if value in column a doesn't match in column b in devexpress

can somebody help me, how to highlight row cell if value in column a doesn't match in column b in Devexpress VB.NET. Here is the screenshot
0
votes
1 answer

how to find column, row and data area values from cell object in Devex Pivot grid

I am using Dev ex pivot grid to show some data on the screen. When user click on any cell in data area, I want to find out it's corresponding row, column and data area value and their field name. I am handling CellClick event of devex pivot grid.…
Abhash786
  • 881
  • 2
  • 24
  • 53
0
votes
1 answer

devExpress GridView EditForm does not allow image fields to be updated

I have a GridView with image column. when I click on each column EditForm opens and I edit my data then press Update button and data is stored back to GridView. but when I add an image column and try to save an image using EditForm I get the…
Ali.Rashidi
  • 1,284
  • 4
  • 22
  • 51
0
votes
3 answers

Allow empty/no selection in DevExpress' LookUpEdit

I have a form containing a DevExpress LookUpEdit (Windows Forms) which is bound to a list of objects with several displayed properties. The EditValue property is set to another object's property which will receive the selected value. The user may…
Byte Commander
  • 6,506
  • 6
  • 44
  • 71
0
votes
1 answer

Reorder LayoutControlGroups inside another LayoutControlGroup on runtime

I've got LayoutControlGroup with few other LayoutControlGroups inside. What I need to do is to reorder them into specific order on runtime. For example, when form shows up I've got those groups in such…
user2475983
  • 1,916
  • 2
  • 13
  • 20
0
votes
1 answer

Error Icon to be displayed within the textbox

I am validating the input of my text field, which is of TextEdit type, using the Validating event. But the error icon is being displayed outside of the text field (second pic) rather than within it (first pic). I've tried ErrorIconAlignment and it…
0
votes
2 answers

how to validate data being entered in pop-up from a gridview in devexpress

I have a gridview setup in DevExpress so that when I want to add an item to the grid, I have an edit form that pops up. I want to validate the data that I enter in the pop-up form. I'm using the ValidatingEditor method because I want to make…
Eric
  • 363
  • 2
  • 9
  • 24
0
votes
0 answers

Using of DevExpress Grid (WinForms or WPF) in Dynamics AX

Do anybody use the DevExpress Grid in Dynamics AX? If yes, my question is how to populate the data from a table to MainView & to Details view(s)? I contacted DevExpress, but I got no answer except referencing back to Microsoft for documentation…