Questions tagged [devexpress-gridcontrol]

Used for questions relating to the DevExpress WPF GridControl component.

DevExpress WPF GridControl is a powerful and flexible component used to visualize data in a table-style manner. It has lots of settings and can be thoroughly customized for various purposes.

85 questions
1
vote
1 answer

Copy multiple selected rows from one grid to another

I have this code that copy selected rows from one grid to another private void btnAddEmployee_Click(object sender, EventArgs e) { LayoutControl lc = new LayoutControl(); lc.Dock = DockStyle.Top; LookUpEdit userShift = new LookUpEdit(); …
M.Bouabdallah
  • 530
  • 10
  • 29
1
vote
1 answer

How to use the ImageUrl property?

I want to show products using TileView, but I do not show pictures when I give url. How can I overcome this problem? private void tileView1_ItemCustomize(object sender, DevExpress.XtraGrid.Views.Tile.TileViewItemCustomizeEventArgs e) { TileView…
glow grap
  • 35
  • 6
1
vote
1 answer

How to get TableName from gridview?

I m using entity framework an I fill gridcontrol like; Models.dbContext ent = new Models.dbContext(); ent.Locations.Load(); gridControl1.DataSource = ent.Locations.Local.ToBindingList(); then I m trying to get Table name like; …
Ali CAKIL
  • 383
  • 5
  • 21
1
vote
0 answers

Converting a ListView to DX.GridControl throws a Null Exception in IsDesignMode

I am trying to convert a ListView that had performance issue to a DevExpress GridControl. When showing the grid, it throws the following exception : InnerException {System.NullReferenceException: Object reference not set to an instance of an…
Frank
  • 11
  • 2
1
vote
1 answer

In DevExpress Grid, how can we change color code of values in bold in summary section after grouping? Please refer snap

After GROUP BY, which method can be used for color coding of summary in grid view? I am able to make changes in color code for value under grid at specific level of record, but for cumulative value, I am having difficulties. Link for Image Please…
1
vote
0 answers

How to make devx asp:grid responsive?

I am using dx:ASPxGridView (Version-11.1) to show grid with Questions and having 3 options [(1)Yes or mostly yes. (2)Mid or undecided (3)No or mostly no] to choose for their respective questions. We already achieved the desktop view (please refer to…
0
votes
0 answers

How to add hyperling to grid printing - Devexpress Xpf Printing

I need your help. I am using Printing talent of Devexpress v17.2. And my application is a WPF application. I get to current grids as PrintTableControl and showing in PrintPreview. Bu now I need to add HyperLink to Print. I want to add Hyperlink…
0
votes
0 answers

(DevExpress) xtragridview display in TextEdit the total sum of specific column

I have a textedit named = MaterialsTextEdit and I have a button that can add/pass the value from the MaterialsTextEdit directly into the table(gridView). I want to display the total sum of Materials column in TotalMaterialsTextEdit. But it doesn't…
0
votes
0 answers

How to drag and drop to DevExpress Schedule Control in versions before 19.2?

I have a Winforms app, C#, .Net Framework 4.6.1, DevExpress version 18.1. I'm stuck with those versions. I want to be able to drag and drop a row from a DevExpress GridView to a DevXpress ScheduleControl. This site shows how to do it, but…
0
votes
0 answers

How to add Values from TextEdit to GridView(XtragridView from DevExpress) in vb.net

Can someone share an example of a source code in vb.net that can load value in xtragridview from textedit value? It seems that the syntax is not the same as Datagridview. That's why I am asking here if someone knows DevExpress xtragrid. I used below…
0
votes
0 answers

How to show List with list of classes in Devexpress Grid?

I have small isue with DevExpress GridControl. I need to show a Class with list of classes in grid in specjal way: For now i have a class:: public class Tabs { public string ModName { get; set; } public List Tab = new…
MiMaRz 97
  • 1
  • 3
0
votes
0 answers

Value is not visible in grid column after grid load

I have written below code to show a DatePicker and Textbox control for a column.
Piyush
  • 5,145
  • 16
  • 49
  • 71
0
votes
0 answers

Add icon to the node depending on the value of the cell of another column. DevExpress Tree List ASP.NET MVC

I am working with TreeList in ASP.NET MVC using DevExpress. Currently the code I have works, but it only adds the same icon on all nodes I would like to add a different icon depending on the Tag column / cell value. For example if the Tag column has…
0
votes
1 answer

Remove icon from SummaryItem

i am using an GridControl with a GridView(v20.2.5). I created an SummaryItem in code with the following properties. new GridColumnSummaryItem(SummaryItemType.Count, SummaryMode.Selection, fieldName, Strings.RowsSelected,…
MrSpt
  • 499
  • 3
  • 16
0
votes
0 answers

C# Winforms / SQL / DevExpress: Column Restructure

I have struggle on how to reconstruct my table/Pivot grid so I can match the designed draft. I work within the grid with only 4 Columns: Billable, Not Billable, Captured time and Customertype. The First Screenshot shows roughly how it currently…