dbgrideh如何实现点击标题排序

 

数据源为adoQuery

1、首先设置dbGridEh里需要排序的字段的Title->Titlebutton属性为true

2、设置dgGridEh的optionsEh->dbhautoSortMarking属性为true

3、在dbGridEh的ontitleButtonClick事件里面判断。

procedure Tfrmmain.dbgGridEh1TitlebtnClick(Sender: TObject; ACol: Integer;

Column: TColumnEh);

begin

if column.Title.SortMarker=smdowneh then

   adoQuery1.Sort :=column.FieldName

else

   adoQuery1.Sort :=column.FieldName +' DESC';

你可能感兴趣的:(Integer)