列  

解决:

      <aColumn>.GroupIndex   :=   -1;  

      <aColumn>.Visible   :=   True;

****************************************************************************

39 保存修改到数据库

解决:

procedure   <aForm>.FormClose(Sender:   TObject;   var   Action:   TCloseAction);  

begin  

if   (<aGrid>.FocusedView <> nil)

and   (<aGrid>.FocusedView.DataController.EditState <> []) then  

          <aGrid>.FocusedView.DataController.Post;  

end;

****************************************************************************

40 设置内置右键菜单

解决:

内置右键菜单包括二个菜单:cxGridStdHeaderMenu,   TcxGridStdFooterMenu

[delphi] view
plain
copy

  1. uses   cxGridStdPopupMenu;
  2. procedure   TForm1.cxGridPopupMenu1Popup(ASenderMenu:   TComponent;
  3. AHitTest:   TcxCustomGridHitTest;   X,   Y:   Integer;   var   AllowPopup:   Boolean);
  4. begin
  5. if   ASenderMenu   is   TcxGridStdHeaderMenu   then
  6. TcxGridStdHeaderMenu(ASenderMenu).OnPopup   :=   StdHeaderMenuPopup;
  7. end;
  8. procedure   TForm1.StdHeaderMenuPopup(Sender:   TObject);
  9. var
  10. I:   Integer;
  11. begin
  12. with   TcxGridStdHeaderMenu(Sender).Items   do
  13. for   I   :=   0   to   Count   -   1   do
  14. if   Items[I].Caption   =   'Group   By   Box'   then
  15. begin
  16. Items[I].Enabled   :=   False;
  17. System.Break;
  18. end
  19. end;

****************************************************************************

41 得到选中记录的值

解决:

[delphi] view
plain
copy

  1. 1)   View.DataController.DataModeController.GridMode   =   False时
  2. RecIdx   :=   View.Controller.SelectedRecords[i].RecordIndex;
  3. ColIdx   :=   View.DataController.GetItemByFieldName(AFieldName).Index;
  4. OutputVal   :=   View.DataController.Values[RecIdx,   ColIdx];
  5. //RecID   :=   View.DataController.GetRecordId(RecIdx);
  6. //OutputVal   :=   ADataSet.Lookup(View.DataController.KeyFieldNames,   RecID,   AFieldName);
  7. 2)   View.DataController.DataModeController.GridMode   =   True时
  8. Bkm   :=   View.DataController.GetSelectedBookmark(ASelectedRecordIndex);
  9. if   ADataSet.BookmarkValid(TBookmark(Bkm))   then
  10. begin
  11. ADataSet.Bookmark   :=   TBookmark(Bkm);
  12. OutputVal   :=   ADataSet.FieldByName(AFieldName).Value;
  13. end;
  14. View.BeginUpdate;
  15. View.DataController.BeginLocate;
  16. try
  17. //   make   changes   here…
  18. finally
  19. View.DataController.EndLocate;
  20. View.EndUpdate;
  21. end;

****************************************************************************

42 在GridMode禁用内置的右键Footer菜单

解决:

uses   cxGridStdPopupMenu;  

   

procedure   cxGridPopupMenuOnPopup(...)  

begin  

      if   (ASenderMenu   is   TcxGridStdFooterMenu)   and  

              <GridView>.DataController.DataModeController.GridMode   then  

          AllowPopup   :=   False;  

end;

****************************************************************************

43 主从表任何时候只能展开一个组

解决:

[delphi] view
plain
copy

  1. procedure   TForm1.ADetailDataControllerCollapsin(  ADataController:  TcxCustomDataController;
  2. ARecordIndex:   Integer;  var   AAllow:   Boolean);
  3. var
  4. I:   Integer;
  5. C:   Integer;
  6. begin
  7. AAllow   :=   False;
  8. C   :=   0;
  9. for   I   :=   0   to   ADataController.RecordCount   -   1   do
  10. begin
  11. if   ADataController.GetDetailExpanding(I)   then
  12. Inc(C);
  13. if   C   >   1   then
  14. AAllow   :=   True;
  15. end;
  16. end;
  17. procedure   TForm1.ADetailDataControllerExpanding(
  18. ADataController:   TcxCustomDataController;   ARecordIndex:   Integer;
  19. var   AAllow:   Boolean);
  20. begin
  21. ADataController.CollapseDetails;
  22. end;
  23. procedure   TForm1.FormCreate(Sender:   TObject);
  24. begin        cxGrid1DBTableView1.DataController.OnDetailExpanding:=ADetailDataControllerExpanding;         cxGrid1DBTableView1.DataController.OnDetailCollapsing:=ADetailDataControllerCollapsing;
  25. end;
  26. ****************************************************************************
  27. 44 动态创建层次(Level)和视图(View)
  28. 解决:
  29. var
  30. Grid:   TcxGrid;
  31. Level:   TcxGridLevel;
  32. View:   TcxGridDBTableView;
  33. begin
  34. //   Creates   a   Grid   instance
  35. Grid   :=   TcxGrid.Create(SomeOwner);
  36. Grid.Parent   :=   SomeParent;
  37. //   Creates   a   Level
  38. Level   :=   Grid.Levels.Add;
  39. Level.Name   :=   'SomeLevelName';
  40. //   Creates   a   View
  41. View   :=   Grid.CreateView(TcxGridDBTableView)   as   TcxGridDBTableView;
  42. View.Name   :=   'SomeViewName';
  43. //   …   and   binds   it   to   the   Level
  44. Level.GridView   :=   View;
  45. //   Hooks   up   the   View   to   the   data
  46. View.DataController.DataSource   :=   SomeDataSource;
  47. //   …   and   creates   all   columns
  48. View.DataController.CreateAllItems;
  49. end;

****************************************************************************

45 获得Group   Footer合计行对应的记录

解决:

[delphi] view
plain
copy

  1. procedure   TForm1.cxGrid1DBTableView1CustomDrawFooterCell(
  2. Sender:   TcxGridTableView;   ACanvas:   TcxCanvas;
  3. AViewInfo:   TcxGridColumnHeaderViewInfo;   var   ADone:   Boolean);
  4. var
  5. ALevel,   ADataGroupIndex:   Integer;
  6. AGridRecord,   AGroupRecord:   TcxCustomGridRecord;
  7. begin
  8. if   AViewInfo   is   TcxGridRowFooterCellViewInfo   and    //   Row   footer
  9. (TcxGridDBColumn(AViewInfo.Column).DataBinding.FieldName   =   'Area')   then     //   Area   column
  10. begin
  11. AGridRecord:=   TcxGridRowFooterCellViewInfo(AViewInfo).GridRecord;
  12. ALevel:= TcxGridRowFooterCellViewInfo(AViewInfo).Container.GroupLevel;
  13. ADataGroupIndex:=Sender.DataController.Groups.DataGroupIndexByRowIndex[AGridRecord.Index];
  14. if   ADataGroupIndex   <>   -1   then
  15. begin
  16. AGroupRecord   :=   AGridRecord;
  17. while   AGroupRecord.Level   <>   ALevel   do
  18. AGroupRecord   :=   AGroupRecord.ParentRecord;
  19. AViewInfo.Text   :=   AGroupRecord.DisplayTexts[0];
  20. end;
  21. end;
  22. end;

****************************************************************************

46 访问过滤之后的记录

解决:

var  

      I:   Integer;  

begin  

      Memo1.Lines.Clear;  

      with   cxGrid1DBTableView1.DataController   do  

          for   I   :=   0   to   FilteredRecordCount   -   1   do  

              Memo1.Lines.Add(DisplayTexts[FilteredRecordIndex[I],   0]);  

end;

****************************************************************************

47 获得单元的Font

解决:

cxGrid1DBTableView1.ViewInfo.RecordsViewInfo.Items[1].GetCellViewInfoByItem(  

      cxGrid1DBTableView1Company).EditViewInfo.Font;

****************************************************************************

48 根据Level名称找到Level对象

解决:

[delphi] view
plain
copy

  1. function   GetLevelByName(AGrid:   TcxGrid;   ALevelName:   string):   TcxGridLevel;
  2. function   LoopThroughLevels(ALevel:   TcxGridLevel;   ALevelName:   string):   TcxGridLevel;
  3. var
  4. I:   Integer;
  5. begin
  6. Result   :=   nil;
  7. for   I   :=   0   to   ALevel.Count   -   1   do
  8. begin
  9. if   ALevel[I].Name   =   ALevelName   then
  10. begin
  11. Result   :=   ALevel[I];
  12. Exit;
  13. end;
  14. if   ALevel[I].Count   >   0   then
  15. begin
  16. Result   :=   LoopThroughLevels(ALevel[I],   ALevelName);
  17. if   Result   <>   nil   then
  18. Exit;
  19. end;
  20. end;
  21. end;
  22. var
  23. I:   Integer;
  24. begin
  25. Result   :=   nil;
  26. for   I   :=   0   to   AGrid.Levels.Count   -   1   do
  27. begin
  28. if   AGrid.Levels[I].Name   =   ALevelName   then
  29. begin
  30. Result   :=   AGrid.Levels[I];
  31. Exit;
  32. end;
  33. if   AGrid.Levels[I].Count   >   0   then
  34. begin
  35. Result   :=   LoopThroughLevels(AGrid.Levels[I],   ALevelName);
  36. if   Result   <>   nil   then
  37. Exit;
  38. end;
  39. end;
  40. end;

****************************************************************************

49 指定Filter   Builder打开/保存过滤文件的默认路径

解决:

uses  

      ...,   cxFilterControlDialog;  

   

procedure   TForm.GridView1FilterControlDialogShow(  

      Sender:   TObject);  

begin  

      TfmFilterControlDialog(Sender).OpenDialog.InitialDir   :=   'D:/'  

end;

Delphi CxGrid 汇总(3)的更多相关文章

  1. Delphi CxGrid 汇总(4)

    1.     CxGrid汇总功能 ① OptionsView-Footer设置为True,显示页脚   ② CxGrid的Summary选项卡定义要汇总的列和字段名及汇总方式,Footer选项卡定义 ...

  2. Delphi CxGrid 汇总(2)

    17. 怎样设计多表头的cxGrid? 解决:cxGrid可以解决如下的表头: --------------------------------- | 说明1 | 说明2 | ------------ ...

  3. delphi cxgrid 使用方法

    delphi cxgrid 使用方法1.绑定数据 方法 cxGrid1DBTableView1.DataController.DataSource:=DataSource12.去掉"Drag ...

  4. 关于Delphi cxGrid主从表中从表只能编辑第一条记录的问题

    在Delphi cxGrid主从表中从表只能编辑第一条记录,这个问题是由于设置主从关联字段错误造成的. 从表DBtableView2的keyfieldnames,DetailKeyFieldNames ...

  5. Delphi cxGrid使用汇总(一)

    1. 去掉cxGrid中台头的Box解决:在tableview1的ptionsview的groupbybox=false; 2.统计功能解决:(1) tableview1. tableview1的op ...

  6. Delphi cxGrid –--> RecordIndex out of Range

    delphi 导出数据时常常出现这样一个错误 < RecordIndex out of Range > 处理办法: 设定 cxGridDBTableView 的 GridModeBuffe ...

  7. Delphi - cxGrid颜色显示相关设置

    1:单元格的值满足某个条件时,该单元格所在整行颜色设置整行字体设置 选中cxGridDBTableView,单击F11调出属性配置面板,在Events中双击OnCustomDrawCell后双击编辑重 ...

  8. Delphi - cxGrid内容xlsx、xls、csv格式导出

    .xls格式导出,uses中添加cxGridExportLink 代码如下: function SaveToExcel(gridMain: TcxGrid; FileName: string): st ...

  9. Delphi - cxGrid设定合并单元格

    在cxGrid中选中需要合并的字段,单击F11调出属性控制面板,展开Options,设置CellMerging的Value为True.

随机推荐

  1. mac下的几个命令-黑苹果之路

    涉及一些文件操作的命令: 1.去掉/加上windows下文件的系统.只读.隐藏等属性,用chflags,nounchg/unchg,nohidden/hidden 2.去掉文件的@属性(这个属性经常导 ...

  2. Cocos2d-x 3.0 事件系统【转】

    事件系统,是一个软件的核心组成部分.从小处讲它是应用程序内部各模块交互的设计模式,从大处讲,它是软件架构的组成模块.在现代软件开发中,操作系统通常通过一些预定义的事件,告知应用程序发生的一些事情如用户 ...

  3. 最小生成树之prim

    prim是设置一个初始结点,寻找其周围最小的边权值,并将该结点作为初始结点,继续寻找现在结点周围的边权值的最小值,但要注意如果这次寻找的某个边权值没有上次的小的话仍然保留上一次的边权值,即lowcas ...

  4. 在Ubuntu Server14.04上编译Android6.0源码

    此前编译过Android4.4的源码,但是现在Android都到了7.0的版本,不禁让我感叹Google的步伐真心难跟上,趁这周周末时间比较充裕,于是在过去的24小时里,毅然花了9个小时编译了一把An ...

  5. 【Unity Shaders】学习笔记——SurfaceShader(九)Cubemap

    [Unity Shaders]学习笔记——SurfaceShader(九)Cubemap 如果你想从零开始学习Unity Shader,那么你可以看看本系列的文章入门,你只需要稍微有点编程的概念就可以 ...

  6. Robotlegs2 学习笔记 -- SwiftSuspenders 2.x (2)

    Swiftsuspenders2简介 Swiftsuspenders2是一个基于元数据(metadata)的IOC(控制反转,inversion of control)的AS3的解决方案.(对于元数据 ...

  7. 【测试】通过SYS用户,对SCOTT用户的会话进行跟踪,并分析此会话中性能消耗较高的SQL,分析并给出优化建议。

    ①连接到scott下,查询scott对应的sid,serial# SQL> select sid,serial#,username from v$session where username=' ...

  8. Object-oriented features

    Python is an object-oriented programing language, which means that it provides features that support ...

  9. Accessing the Deep Web: A Survey

    http://www.inf.ufsc.br/~ronaldo/deepWeb/querying/Chang-dwsurvey-cacm07.pdf

  10. 华为OJ平台——完美数

    import java.util.Scanner; /** * * 完全数(Perfect number),又称完美数或完备数,是一些特殊的自然数. * 它所有的真因子(即除了自身以外的约数)的和(即 ...