The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
62 views

Binding a ComboBoxEdit ItemsSource

I hope I can do a good enough job explaining my problem. I have a DevExpress GridControl with 3 columns. The GridControl's ItemsSource is set to a collection of Objects that have 3 strings on them. ...
0
votes
1answer
35 views

Remove button Find and Clear in GridControl

like I can eliminate the botton (Find and Clean) of a GridControl, and alone to leave TextEdit. regards Alex
0
votes
1answer
96 views

Issue about Devexpress Gridcontrol in C#?

I have a devexpress gridcontrol and loaded a Xml .. If XMl has attributes then datasource getting loaded correctly .. else it fails and throws exception <?xml version="1.0" encoding="utf-8" ...
0
votes
0answers
62 views

Issue Comming in Data Link Property Window C#?

I used this Two interops to Open Datalink window At Runtime When i try to open this with Exsisting Database Loading Symbol Comes in Mouse Cursor ... If i Focus anything then Loading get Stopped .. ...
0
votes
1answer
46 views

OutOfMemoryException when loading large table into DataSet

I would like retrieve data from a SQL Server table containing 2M records. I am using the Devexpress GridControl and have tried a simple code like this: DataTable dt = new DataTable(); String ...
0
votes
1answer
390 views

Is It Possible to Add Multiple Repository Items in a Gridview Cells using DEVEXPRESS?

I have Datatable and I have to add Two repository items to same cell DataTable dtbl = null; public Form1() { InitializeComponent(); dtbl = new DataTable(); ...
0
votes
2answers
208 views

devexpress wpf gridcontrol disable context menu

I have a DevExpress grid control and I want to disable the default context menu that appears when I right click the Grid column headers. To disable this functionality I handled the ...
0
votes
0answers
97 views

Can't find details view after I invoke the DevExpress GridControl

I have recently used Dev Express master-detail (XtraGrid) GridControl contains 2 views (Master view + Details view) but after I invoke this GridControl into delegate method I cant access the second ...
0
votes
0answers
64 views

How can I pass the GridControl instance to ViewModel

I've added a GridControl in my View(xaml). The DataContxt of this view is my ModelView class. I've binded the DataSouce of the grid to a property of my ModelView class. The data are loading and ...
0
votes
1answer
98 views

How to use the AdvBandedGridView as a detail level in a GridControl

I want to design a Master-Detail Grid view like that in the following Link: http://documentation.devexpress.com/#WindowsForms/CustomDocument562 However, I want to use the AdvBandedGridView type as ...
0
votes
1answer
47 views

How to provide if and else Formatter in Devxpress Gridcontrol using Xaml?

I am developing an app using Devexpress Gridcontrol using Xaml. In a cell Template i am having a Textblock in which i want to Display 'Open' if the value in Binding is '0' and 'Close' if it is '0'. ...
0
votes
1answer
521 views

devexpress gridcontrol refresh datasource

with this code I populate a devexpress gridcontrol, everything is ok: Private Sub tbccegek_SelectedPageChanged(ByVal sender As Object, ByVal e As DevExpress.XtraTab.TabPageChangedEventArgs) Handles ...
0
votes
0answers
352 views

DevExpress XtraGrid WPF add row dynamically

First of all I just started out learning DevExpress and so far I think it's awesome. I came from standard VB.Net windows form-using programmer, and I usually use DataGridView in which now I'm trying ...
0
votes
0answers
93 views

Windows form gridcontrol IList CRUD

This is a windows form application. I set up Nhibernate in order to get an object, say, a user, or a list of objects, say, IList<User> users. And here is the question, I need to bind ...
0
votes
1answer
194 views

How Sub Level displays its bands without inhiriting it from the parent Main View at DevExpress Grid Control

I'm using DevExpress 10.2 For WinForms with .Net Framework 4.0 I have a form that contains grid having bands and this grid has Main View and Level inside it so it sounds like a banded grid inside ...
0
votes
1answer
110 views

Devexprerss GridControl Datetime Column AutoFilter

I want to customize autofilter row I create template for autofilter row and set gridColumn AutofilterRowEdiTtemplate to my template Its works for general column but for datetime column always show ...
0
votes
1answer
175 views

How to populate data to GridControl from Web Service?

I have a problem with adding rows/cells values to GridControl. I am using Web Service as data source. My web service function runs perfectly and returns an xml type of value e.g. <User> ...
0
votes
1answer
307 views

DXGridControl Is not working CellStyle

I would like to change the Background, FontWeight, Foreground in dxg:GridColumn. I wrote this code but unfortunately it does not work. How can I fix it? public class CellViewModel { public string ...
0
votes
0answers
102 views

Show Error Icon in Devexpress Silverlight GridControl rowindicator when entity.haserror return true

I bind list of person to DevExpress silverlight gridcontrol that person class inherits from entity class when user clicks submit i validate persons after validate some person haserror property ...
0
votes
0answers
374 views

Cutom type of property binding Devexpress WPF gridcontrol

I have problem with devexpress wpf gridcontol. I have Instrument class which I bind to gridcontrol. This class contains property with custom type (Price). In Price I have two property Value and ...
0
votes
0answers
254 views

Simple OpenSwing GridControl example

Suppose you create an OpenSwing UI in, for example, NetBeans, with a few numeric columns, say A, B, and C. And suppose you have a simple array of object of class with fields A,B,C. What do you add ...
0
votes
1answer
740 views

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

How can I have changes in gridview updated to datatable that i created in code

I create a datatable in code and set it to a gridcontrol (DevExpress component) to show it like the code here (add one row to datatable and set it as datasource of gridcontrol): DataTable ...
0
votes
2answers
324 views

Get gridcontrol records as an array

How can I get gridcontrol records as an array? I set an array as a datasource for a gridcontrol (devExpress component). PersonFamily4grid[] tmpPersonFamily = new ...
0
votes
1answer
1k views

Get data into gridview devexpress

In gridcontrol devexpress, I display "employee_id" column as combobox. I want to fill data from EMPLOYEES table into "employee_id" column in gridcontrol devexpress. Thanks.
0
votes
1answer
295 views

adding a numericup down in a syncfusion grid control

Reg windows forms syncfusion, grid control I am trying to add a popup box like the one we have in xcel. On rightclicking a cell and then insert, a small popup box asking how many rows needs to be ...
0
votes
1answer
216 views

DevExpress Horizontal GridControl

I would like to know. How can I make WPF GridControl like it.
0
votes
1answer
434 views

Filtering Issue with DevExpress Wpf GridControl

here my problem: I'm developing an application using DexExpress wpf GridControl 10.1, c#, Net 4.0 and I use checkbox dropdown lists to filter columns. Now when I set a filter on a column, and then ...
0
votes
1answer
245 views

syncfusion, context menu, allow multiple cell selections

I am using the syncfusion grid control for a windows forms application I am trying to select multiple cells in a grid. and on right click, the selection should remain. But not able to get the ...
0
votes
1answer
175 views

DevExpress RepositoryItem in WPF

I am trying to port some code using DevExpress XtraGrid to Wpf. What is the equivalent of RepositoryItem in their WPF suite?
0
votes
1answer
321 views

Can I select text in grid control and put a cursor to highlight it?

I have a devexpress grid control. I have a search functionality written by myself to find out the matched row cell value by looking the selected value in each row cell (though grid control has its own ...
0
votes
2answers
3k views

Devexpress Gridcontrol Multiselect without using indicator column

Is there any way to allow the user to do a multiple row selection just by clicking and dragging along cells within the actual grid? I.e. Without using the indicator column?
0
votes
2answers
862 views

DevExpress Xtragrid gridview inside gridview

I want to fill a cell of a DevExpress Xtragrid gridview with another gridview. Is this possible? and if its possible can someone help me with this like what should I read about for doing this..
0
votes
1answer
589 views

Binding to DevExpress GridControl TotalSummary

I have a basic newbie binding question, which isn't necessarily directly related to the control used. Anyway, here's the thing: I have a DXGrid with a TotalSummary defined, which counts the rows of ...
0
votes
1answer
136 views

Which event I should use here?

I have a devexpress.XtraVerticalGrid.VGridControl, I have two columns on this grid. Column1 is a string column while column2 is a column to display decimal numbers. Column2 is editable. Is there a way ...
0
votes
1answer
850 views

DevExpress GridView PostEditor

I have a grid control with unbound columns in it. The question is, everytime I change a cell value (I am using a repository item) I immediately call the gridview.PostEditor() method so that it would ...
0
votes
0answers
254 views

Weird row selection behaviour with three GridControls bound to same datasource

I've got three WinForm GridControls tied to the same datasource - one displays the full dataset while each of the others displays a subset (top 3 and bottom 3 rows based on a column value, to be ...
0
votes
4answers
4k views

How to set the default Sort on a DevExpress GridView

On .net WinForm, DevExpress's GridControl/GridView bound on a DataSet, how to specify the default sort order? The one that is used when there is no visible GridColumn with a SortOrder. By default, I ...
0
votes
1answer
584 views

IsSetData in gridcontrol is never true when clicking on checkEdit item

I have this DevExpress GridControl which I've added with two coloums the one containing a repositoryItemCheckEdit and the other normal string Category description. Now I've made the ...
0
votes
1answer
985 views

Adding one last row to DevExpress GridControl from a query

I have a dataset filled by SQL query.. I want to add a single row to its last rows, containing sum from the value column.. Could u help me? thx... Regards, Roland
0
votes
2answers
439 views

'Column Chooser' don't show the columns anymore

suddenly the column chooser (in run time app) stopped showing available coulmns stored inside him!(GridControl) I re-installed the app on client machine but same issue anybody knows why?

1 2