up vote 1 down vote favorite
share [g+] share [fb]

Well, this seems a little tricky (if not imposible). I'm tryin to make my DBGrid sort its data by clicking on column's title.

The thing is that I'm (sadly) working with Delphi3, I'm not using ADO DataSets and the query gets a lot of rows, thus I can't reopen my TQuery changing the "order by" clause on clicks.

Someone has implemented something like this?

link|improve this question

50% accept rate
feedback

3 Answers

This is actually done by sorting the dataset, and then the grid reflects the change. It can be done easily enough by creating an index on the dataset field for that column. Of course, this can only be done on a dataset that supports index sorting, such as TClientDataset.

link|improve this answer
feedback

Delphi 3 have TClientDataset. And TQuery can use explicitly created indexes on the database to order data on the IndexName property.

link|improve this answer
Not necessarily true, neither my Delphi 4 Pro nor my Delphi 5 Pro installation have TClientDataSet. Maybe it's only in the Enterprise version? – mghie Jul 18 '09 at 10:56
Hmmm. On these versions I only touched Enterprise editions (since I normally worked in loco). But D3 Enterprise certainly have TClientDataset. – Fabricio Araujo Jul 18 '09 at 18:02
feedback

There are some examples of how to do this Here. As already mentioned, sorting is quite easy if you are using a TClientDataSet (cds.IndexFieldNames := Column.FieldName in the OnTitleClick of the TDBGrid). However if you are not able to do this you can either regenerate your query (which you have stated you don't want to do) or obtain a more advanced data grid such as Express Quantum Grid (which I think allows you to sort).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.