xtragrid

Freeze the indent of a row group in DevExpress GridControl

I am required to display a DevExpress WinForms GridControl where the rows must be grouped by a date column. When horizontally scrolling the grid, I am required to keep the group row and group indents fixed to the left of the control (so they do not scroll with the columns). I have so far been unable to find any built-in capability for ...

Is there any Flex dataGrid implementation which has features similar to XtraGrid?

I am looking for a Flex datagrid component that has features like grouping, sorting, master/detail display, etc. I am having an application in C# that uses XtraGrid suite to achieve the required datagrid features. I am planning to migrate this application to Flex. If there is no flex component readily available with XtraGrid features, th...

Mailing Address is forcing 2nd Record in CSV (DevExpress Controls)

My DevExpress CSV export has two lines per record. Rank Score,Prog.,Full Address 63.30 ,JIW ,1234 Whispering Pines Dr , ,Sometown MI 48316 62.80 ,JIW ,9876 Beagle Dr , ,Sometown Twp MI 48382 I would like to change it to one line because I want to do a Word Merge. (Un...

Can a DevExpress XtraGrid be filled using a a Dynamic SELECT statement string

Can a DevExpress XtraGrid be filled using a a Dynamic SELECT statement string? i.e. SELECT * FROM Employee or SELECT * FROM Dependents To fill our XtraGrids currently, we use a ORM that creates entities. To do this it takes a lot of steps and time. What is driving me to ask this question is we do a lot of client aquistions where we ...

Entity Framework SaveChanges - how to ignore ID / Identity fields on INSERT

VB .NET 4 WinForms application. I have a (DevExpress) grid bound to an IEnumerable(Of MyClass). Whenever a new row is added, the ID defaults to zero (0). On trying to SaveChanges, EntityFramework doesn't realise that being an identity field means it should ignore any contents on insert and just insert the other values. I can't specify n...

xtragrid sticky rows

on my winform app, I have a xtragrid (layoutview), and several radio buttons. each button will retrieve data from database and display as cards in layoutview. btn1 is like "select abc, cde, efg, hij from table_1" and btn2 "select abc, cde, hij from table_2". If I click btn1 first, all four fields will show. If I switch to btn2, however, ...

C# - Entity Framework add new object to ObjectContext

Hi, im working with Entity Framework, SQL and C#. i have a Table called Client and other called clients_phone. I have a form with a Xtragrid and using BindingSource I bind the IQueryable to the grid. myBindingSource = new BindingSource(); myBindingSource.DataSource = clients; //Clients it is the IQueryable<Client> myBindingSource.Dat...

Is it possible to let linq to sql auto submit my new records back to database ?

I am using linq to sql , and I return a queryable result from linq to sql : var qry = from p in table select p; Then I use this to bind to a xtragrid: GridControl.DataSource = qry; Then If I edit the records in xtraGrid, I just need to call dataContext.submitChanges() to submit the changes back to database. My question is : Am I ...

How to hide column of devexpress XtraGrid

Hai all, Am using devexpress XtraGrid in C#.NET application.On run time i want to hide 1 column of XtraGrid and access that column in code behind page.And please help to access rows and columns of XtraGrid. Thank You ...

how to show running sum on group footer summary on devexpress xtragrid

I'm using Devexpress Xtragrid on Winforms. I am able to show group summary footer and total footer. But i want to show running sum too,is it possible how ? Let's give an example over my data. Username Points Week alex 20 1. john 15 1. alex 40 2. john 5 2. alex 30 3. after grouping w...

XtraGrid. apply filter by enter key

Hello, guys I use devexpress XtraGrid and auto-row feature. At documentation I see: "You can also specify whether filtering should be applied immediately after changing a value or only when end-users press the ENTER key." I would like implement second behaviour, but I don't find any properties for this. So how can I achieve this behavio...

Working with Grid using BackgroundWorker

I have a GridControl which I populate using a BackgroundWorker. Then I'm using another BackgroundWorker to perform some calculations on the dataset which is the datasource of the GridControl. As I'm trying to do this a cross thread operation on the GridControl error is thrown. I'm unable to understand that despite not performaing any ope...

How to get checkBox object from c# Xtragrid colum

Hai all, Am using DevExpress XtraGrid control in C#.Net application.And binding one table values to grid,that table contain one bit field ("Authorized") so grid displaying with bit field column having checkBox.I want to get that checkBox object or get the event of that control. ...

How to handle a custom event in a XtraGrid control

I am trying to solve a problem with a DevExpress XtraGrid in a winforms app. I have created a custom RepositoryItemButtonEdit control and have one unbound column in a XtraGrid that uses it. This control is a custom search field which throws an event when it has completed a search. What I am trying to do is add an event handler to the ce...

How to disable one row of DevExpress XtraGrid in C#

Hai all, I am using DevExpress XtraGrid in c#.NET application. I want to disable or set readonly property to particular row of XtraGrid . Please Help. ...