Sort DBGrid by clicking column's title - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T07:35:55Z http://stackoverflow.com/feeds/question/1145839 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1145839/sort-dbgrid-by-clicking-columns-title 1 Sort DBGrid by clicking column's title Eliseo Ocampos 2009-07-17T21:46:15Z 2009-07-19T22:08:29Z <p>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.</p> <p>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.</p> <p>Someone has implemented something like this?</p> http://stackoverflow.com/questions/1145839/sort-dbgrid-by-clicking-columns-title/1145936#1145936 3 Answer by Mason Wheeler for Sort DBGrid by clicking column's title Mason Wheeler 2009-07-17T22:19:15Z 2009-07-17T22:19:15Z <p>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.</p> http://stackoverflow.com/questions/1145839/sort-dbgrid-by-clicking-columns-title/1146708#1146708 0 Answer by Fabricio Araujo for Sort DBGrid by clicking column's title Fabricio Araujo 2009-07-18T04:18:45Z 2009-07-18T04:18:45Z <p>Delphi 3 have TClientDataset. And TQuery can use explicitly created indexes on the database to order data on the IndexName property.</p> http://stackoverflow.com/questions/1145839/sort-dbgrid-by-clicking-columns-title/1151020#1151020 0 Answer by Alister for Sort DBGrid by clicking column's title Alister 2009-07-19T22:08:29Z 2009-07-19T22:08:29Z <p>There are some examples of how to do this <a href="http://delphi.about.com/od/usedbvcl/l/aa042203a.htm" rel="nofollow">Here</a>. 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 <a href="http://www.devexpress.com/Products/VCL/ExQuantumGrid/" rel="nofollow">Express Quantum Grid</a> (which I think allows you to sort).</p>