Sort DBGrid by clicking column's title - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T07:35:55Zhttp://stackoverflow.com/feeds/question/1145839http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1145839/sort-dbgrid-by-clicking-columns-title1Sort DBGrid by clicking column's titleEliseo Ocampos2009-07-17T21:46:15Z2009-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#11459363Answer by Mason Wheeler for Sort DBGrid by clicking column's titleMason Wheeler2009-07-17T22:19:15Z2009-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#11467080Answer by Fabricio Araujo for Sort DBGrid by clicking column's titleFabricio Araujo2009-07-18T04:18:45Z2009-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#11510200Answer by Alister for Sort DBGrid by clicking column's titleAlister2009-07-19T22:08:29Z2009-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>