Questions tagged [gridcontrol]

The grid control displays data by means of views. If the grid doesn't represent master-detail relationships, it displays a single View specified by the MainView property. If the main View's data source has child relations or you supply detail data manually, the grid control can display Views representing detail data. Thus, the grid control implements View management mechanisms to arrange them, provide data, specify common appearance, etc.

306 questions
3
votes
2 answers

Devexpress gridcontrol change selected row color

I'm using FormatConditions to format certain rows based on their properties. E.g. I have a gridcontrol with many rows and some rows are colored red when there is an error. The issue I have is that when a row is selected, the formatting disappears…
user832747
  • 167
  • 2
  • 4
  • 14
3
votes
1 answer

How to catch ConstraintException when DataRow is added from a GridView?

I am using DevExpress GridControl to create a form that enable user to do some data entry. The grid is bound to a DataTable with one column defined as unique as its DataSource. DataTable dtDetail = new DataTable(); dtDetail.Columns.Add("ProductID",…
Hermanto
  • 552
  • 6
  • 15
3
votes
1 answer

Change devexpress grid control column header caption

Hai all, How to change devexpress gridconrol column header caption using c#. please help
Vyasdev Meledath
  • 8,926
  • 20
  • 48
  • 68
3
votes
1 answer

object must implement iconvertible devexpress

I have a gridcontrol which is populated from database like this: OracleConnection connection= new OracleConnection("DATA SOURCE=mydb;PASSWORD=pass;PERSIST SECURITY INFO=True;USER ID=id"); connection.Open(); OracleDataAdapter adapter = new…
Viva
  • 1,983
  • 5
  • 26
  • 38
3
votes
1 answer

How to get single click event on image in column of DevExpress Grid Control using wpf?

I have Navigation bar control and one NavBar Group contains the grid control. I want to get the single click event on particular image which is in one column of grid control and on image click event I have to show the pop-up for some menu options.…
Jay Shukla
  • 782
  • 1
  • 13
  • 24
3
votes
1 answer

change column to row in gridcontrol wpf devexpress

i have a devexpress gridcontrol ,which displays the data from the sql database. By default,the table in gridcontrol is coming in a column fashion, Whereas i need to convert column header as row header, where the column data will be presented as row…
Vivek Saurav
  • 2,235
  • 4
  • 25
  • 46
3
votes
1 answer

How to get DevExpress GridControl cell single click event in wpf?

I am creating a demo project in wpf application I am also using DevExpress GridControl in this application my problem is that I want get the cell value in on click particular cell.
Jay Shukla
  • 782
  • 1
  • 13
  • 24
3
votes
3 answers

Validating cells in DevExpress GridControl

Just a simple question I can't manage myself. I have a DevExpress GridControl for Winforms (12.2) filled with some numeric values, the grid is editable and the user can change those values. Imagine the user changes one, what I want is to validate…
danijepg
  • 347
  • 1
  • 4
  • 15
3
votes
3 answers

How to change the way data is shown in WPF GridControl?

I'm trying to use GridControl from DevExpress but I can't do the same thing I usually do in ListView with a GridView View. I did both aproach. Using DisplayMemberBinding and CellTemplate. Both show nothing. Code below (I removed some…
Vitor Canova
  • 3,918
  • 5
  • 31
  • 55
3
votes
2 answers

is this the way BindingList should work?

I have a DevExpress GridControl bound to a BindingList. I used a BindingList so that changes are automatically applied to the bound control. It works perfectly when I add or remove items from the list, but when I change an item, it doesn't quit work…
TheGateKeeper
  • 4,420
  • 19
  • 66
  • 101
2
votes
4 answers

Unbound GridControl

I have a gridControl who's data source is a List. Each item in List is made out of three fields. And I have 3 columns in the gridControl. when I programatically insert values into the gridview it does not appear. Here is my code. public…
Fares
  • 354
  • 3
  • 5
  • 15
2
votes
1 answer

Want to show Filter Data in DevExpress GridControl when I repoen the page

I have DevExpress GridControl in my MVC application along with simple search box to search and filter the values on all GridControl's string columns. Here, I need to show the filtered text (search text) and filtered values on the GridControl once…
Subash B
  • 164
  • 2
  • 14
2
votes
1 answer

Set correct input/output Devexpress gridcontrol cell mask

I have gridcontrol table and table in database. I am able to display money data from database in gridcontrol (Display Format; "n0", custom) I need to input special symbol "<" for which I want to create mask with RegEx value "(\\<)?…
2
votes
2 answers

Devexpress GridContol check value change after double-select

I'm using DevExpress GridControl, where I have data binded and one column contains boolean flag IsOrdered. I registered for the event on my SimpleGridView called CellValueChanged because when my check field (meaning the IsOrdered value) is changed I…
Dawid Sibiński
  • 1,657
  • 3
  • 21
  • 40
2
votes
1 answer

How to Select row using checkedit gridcontrol devexpress?

I have a WinForm using C# in my coding, and I use gridcontrol Devexpress 2010 to show the data contact list. Here is my form After selecting those lists I get the value from gridcontrol that I select and press the button OK to get it. I don't know…
aminvincent
  • 553
  • 1
  • 12
  • 43
1
2
3
20 21