Tagged Questions

TcxGrid is a grid control presents data from a data storage in various ways. It belongs to the ExpressQuantumGrid Suite.

learn more… | top users | synonyms

5
votes
1answer
770 views

How to do word wrap in a DevExpress TcxGrid?

I've got a long line of text that would be a lot easier to view if it would just word wrap around multiple lines, but I can't seem to find the option for it. Does anyone know how to enable word-wrap ...
3
votes
2answers
380 views

Drag image change while drag over grid

I'm creating an instance of my custom DragObject on StartDrag: procedure TForm1.GridStartDrag(Sender: TObject; var DragObject: TDragObject); begin DragObject := TMyDragControlObject.Create(Sender ...
3
votes
1answer
559 views

Table header groups in a cxgrid table view

I need to add a simple style to a Tableview based on a query in Delphi. I need it to look like this: I know there's a way to group by fields, but I can't seem to figure out how to add the 2 main ...
3
votes
2answers
689 views

How can I tell which TcxGrid row the user dropped something onto?

The user is dragging something over my TcxGrid component. How can I know which row it gets dropped on?
2
votes
2answers
165 views

tcxGrid using TList as a DataSource

I'm wondering if it's possible to bind a TList object as a cxGrid datasource. So what I have is a TList object containing various objects that i do not need to persist. I want a sort of GridView to ...
2
votes
1answer
442 views

How to get edited value from cxgrid lookupcombobox

Delphi-7, DevExpress ExpressQuantumGrid Suite For Delphi.BCB v5.8 Fianl I have a lookupcombobox column in cxGrid named emaillist_id. Where emaillist_id is KeyField and Email is ListField. A user can ...
2
votes
1answer
782 views

How would you change the colour of the current selection in cxGrid?

How would you change the colour of the current selection in cxGrid? Thank you.
2
votes
4answers
1k views

Document User Interface using QuantumGrid (TcxGrid) from Developer Express

I need to generate a user interface for entering a sales document (eg invoice). I'm trying to use components of "developer express" specifically the QuantumGrid component (TcxGrid). I've seen the ...
2
votes
4answers
1k views

How can I fire an event handler after a value in a TcxGrid has changed?

I've got a DevExpress TcxGrid, with an event handler attached to its GridView's OnEditValueChanged event that's supposed to summarize some data in one of the columns. Problem is, this event gets ...
1
vote
1answer
232 views

daysbetween difference between two dates in the grid

I am trying to calculate daysbetween difference between two dates in the grid. This kind'a works but produces at first strange result: This is Oncalculate fields event of the TEMP table: ...
1
vote
1answer
432 views

Hiding TcxGridLevel in TCXGrid depending on master record values

I have a TcxGrid which consists of a master TcxGridLevel and 2 child TcxGridLevels (all of which use a TcxGridDBTableView). I would like to hide one of the child levels depending on the value of the ...
1
vote
4answers
2k views

How do I color a cxgrid based on table value?

I would like all rows where in particular field name 'hello' is present to get colored green. I tried this on customdrawcell: if abstable1.fieldbyname('somename').asstring = 'Hello' then ...
1
vote
2answers
1k views

How to auto-size a DevExpress TcxGrid

I've created a table from a TcxGrid with a simple table view. The data is being poked into the table using DataController.Values[n,m] as a simple string and I have some 10 columns that will show ...
1
vote
4answers
996 views

Delphi, what's the quickest record access method in a TcxGrid or TDataSet

I am using Delphi 2007 and the TcxGrid to show the contents of a file library. The database houses information about the type of file, name, path, and extension. In testing I am loading 1700 records ...
1
vote
2answers
903 views

How to add a hyperlink column to a TcxGrid (Developer express grid)

Hi In Delphi I've managed (!) to add a column to a TcxGrid table view that appears as a hyperlink (instead of a simple string). To do this, you simply edit 'properties' of the column and choose ...
1
vote
1answer
2k views

How can create summary footer on runtime?

I use TcxGrid I have create fields on execution time because I have a pivot query and columns are variable I filled my grid like theese codes grdCevapDBTableView2.BeginUpdate; ...
0
votes
0answers
58 views

DevExpress QuantumGrid: keep selections after DataChanged?

I'm using cxGrid von DevExpress Quantum Grid in Provider Mode with CustomDataSorce. I put new data with Insert(0) directly into my ObjectList connected with CustomDataSource and call DataChanged to ...
0
votes
0answers
46 views

How to make the TcxGridTableView background displayed non-tiled?

I use TcxGridTableView. I have assigned its background image with TableView1.BackgroundBitmaps.Background.LoadFromResourceName(HInstance, 'BACKGROUND_IMAGE'); The image gets properly displayed as ...
0
votes
0answers
103 views

tcxGrid. How to get and display data by blocks

I am using Developer Express VCL cxGrid (ExpressQuantumGrid). I am loading all data from my database. Does cxGrid has some mechanism or tool for displaying data by blocks (dont't hold all rows on the ...
0
votes
1answer
331 views

Delphi Devexpress TcxGrid Scroll Events

I am using the cxGrid component with a TcxGridTableView. I need to get the offset distance of the scroll bar. I wonder there are scroll events that I can use to get this information? I'm looking for ...
0
votes
1answer
92 views

I am not able to change TcxGrid fields values when dataset in insert mode

I am using delphi2010 and oracle 10g as a database My TcxGrid is conected to dataset (qryDONEMSEL -> TOraQuery) when I want to add something to database by clicking button I change dataset to insert ...
0
votes
1answer
424 views

How to fill combobox in cxGrid depend on column value in same cxGrid

myComboboxDatasetSQLQuery: select 0 as priv_id, 'нет' as priv_name from dual union all select 1 as priv_id, 'просмотр' as priv_name from dual union all select 2 as priv_id, 'изменение' as priv_name ...
0
votes
2answers
572 views

cxGrid new record on last field Enter

I'm struggling to make a TcxGrid to append a new record whenever the user presses Enter key on last field of the current record, however I didn't find any property that might help me achieve this. I ...
0
votes
1answer
493 views

cxGrid: how to cast a cell to a combobox-object

i have a problem with my cxgrid. in my cxgrid there a different rows and columns which have comboboxes as properties. but how can i cast a special cell value to a combobox-object? for example: i want ...
0
votes
2answers
624 views

Adding a checkbox to cxGridDBColumn (DateEdit)

I using Delphi BDS 2006 and have a DevExpress cxGridDBColumn with properties set to DateEdit and was wondering whether it is possible to add a checkbox to the displayed date time picker popup?
0
votes
3answers
2k views

Create column on execute time in TcxGrid like tDbGrid in delphi

I use TcxGrid But I cant create fields on execution time because I have a pivot query and columns are variable Can I fill cxGrid like tDbGrid?
0
votes
1answer
1k views

Showing cell content on hint in DevExpress grid

I am using TcxGridDBTableView from DevExpress. Some of the cells contain really long strings, so I want to be able to show them to users using Hints. I want also to be able to do have line brakes in ...