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

How can I make it possible to edit (format) the text in "GridControl" using "RichTextEdit1"?

Windows 7 x64 Visual Studio 2015 x64 DevExpress 17.1.5 MSSql Server 2014 CREATE TABLE "tbl0410Categories" ( "CategoryId" INT NOT NULL, "Name" NVARCHAR(max) NOT NULL, "fotoLink" VARCHAR(1000) NULL DEFAULT NULL, "text1" VARCHAR(7000)…
0
votes
1 answer

How do I place a picture on the form?

Question on the NWindLayout demo dxdemo://Win/XtraGrid/MainDemo/NWindLayout scrin1 scrin2 How to place an image in the field? Do I need to store the picture in the database? or The picture is stored on a local disk, and the database stores a link…
0
votes
2 answers

How to get selected row index in devexpress gridcontrol?

I have devexpress gridcontrol which looks like that: I have click event on this red X button: private void delete_button_ButtonClick(object sender, DevExpress.XtraEditors.Controls.ButtonPressedEventArgs e) { } How can get there row index where…
godot
  • 3,422
  • 6
  • 25
  • 42
0
votes
1 answer

Devexpress GridControl VB NET

Hi i'm getting an error here . What can i do for? TextBox1.Text = GDLoadCaixa.Item(0, GDLoadCaixa.CurrentRow.Index).Value.ToString Severity Code Description Project File Line Suppression State Error BC30456 'Item' is not a member of…
Leogreen
  • 701
  • 1
  • 6
  • 20
0
votes
1 answer

DevExpress GridColumn strange proportional sizing

I have created a GridControl with a few fixed width and 2 autowidth columns. I have set the autowidth columns like this:
Nestor
  • 8,194
  • 7
  • 77
  • 156
-1
votes
2 answers

how can I change the header alignment of my cxGrid table view?

How can I change the header alignment of my cxGrid tableView? I try MyGridColumn.HeaderAlignmentVert := TcxAlignmentVert.vaCenter; but this not work :(
zeus
  • 12,173
  • 9
  • 63
  • 184
-1
votes
1 answer

devexpress GridView RowAutoHeight not work when print

I have a GridControl whose datasource is a DataTable. The DataTable has two columns and one of them contains Bitmap. The RowAutoHeight property of GridView is set to true and GridControl display fine in form. But if I use ReportGenerator to generate…
AlpacaMan
  • 465
  • 2
  • 7
  • 24
-1
votes
1 answer

How to enable specific column in a devexpress gridview

my code seems to be not working gridView6.Columns["QueueID"].OptionsColumn.AllowEdit = true; I also tried int n = Convert.ToInt32(gridView6.Columns.Count.ToString()); for (int i = 0; i < n; i++) { …
-2
votes
1 answer

WPF. How to get the row that the mouse pointer is currently over in a GridControll?

I have found this link. This link explains how to get row over mouse pointer in GridView but I have not found anything about how to do this for GridControl. Is there any ideas?
Allaev Bekzod
  • 151
  • 1
  • 2
  • 13
1 2 3 4 5
6