`
zjut_xiongfeng
  • 浏览: 285120 次
  • 性别: Icon_minigender_1
  • 来自: 杭州
社区版块
存档分类
最新评论

table control sort

F# 
阅读更多

FIELD-SYMBOLS : <f1>,<f> .
DATA: wa TYPE cxtab_column.
DATA: icount TYPE i .
DATA: f1(10) ,f2(10) .
LOOP AT tc_9001-cols INTO wa.
IF wa-selected = 'X' .
ADD 1 TO icount .
SPLIT wa-screen-name AT '-' INTO f1 f2 .
IF okcode = 'USORT' .
SORT t_itab BY (f2) ASCENDING .
ELSE .
SORT t_itab BY (f2) DESCENDING .
ENDIF .
ENDIF.
ENDLOOP .
IF icount = 0 .
MESSAGE i208(00) WITH '请选中需要排序的列'.
ENDIF .

分享到:
评论

相关推荐

    bootstrap-table插件

    - **筛选**:使用`filter-control`插件可以为每列添加过滤输入框,方便用户筛选数据。 - **分页**:Bootstrap Table支持前端分页和后端分页。前端分页通过`data-pagination="true"`开启,后端分页则需服务器配合,...

    Bootstrap Table API 中文版(完整翻译文档)

    还有许多其他属性和方法,如`data-sort-order`来设置排序顺序(升序或降序),`data-filter-control`用于添加过滤控件,`data-detail-view`启用详细视图等。 Bootstrap Table API 提供了丰富的事件,如`...

    bootstrap-table API文档

    5. 数据操作:`pagination`分页设置,`sort`排序功能,`filterControl`过滤器控制,允许用户根据需要进行数据筛选。 6. 行操作:通过`rowStyle`和`rowAttributes`可以自定义行的样式和属性,实现如高亮、链接等功能...

    boostrap-table-develop开发包

    4. **事件和方法**:Bootstrap Table提供了丰富的事件(如load、click、sort等)和方法(如load、toggleColumn、destroy等),允许开发者在表格操作时进行回调处理或直接调用方法改变表格状态。 5. **插件扩展**:...

    bootstraptable基于Bootstrap的jQuery表格插件

    例如,只需要在表格标签中添加 `data-toggle="table"` 和必要的属性,如 `data-url`(用于获取数据的 API 地址)、`data-pagination`(启用分页)和 `data-sort-name`、`data-sort-order`(定义默认排序字段和顺序)...

    angular-meteor-smart-table:适用于[smart-table](http

    **Angular-Meteor-Smart-Table:打造高效动态的前端数据展示** Angular-Meteor-Smart-Table 是一个专门针对 AngularJS 和 Meteor 框架的插件,它为开发者提供了一个强大的工具,使得在Web应用中展示和管理表格数据...

    Jquery dataTable显示指定列

    `&lt;table&gt;`元素将被`Jquery dataTable`初始化并处理。弹框可以是一个模态对话框,包含所有可选列的复选框,用户可以根据需要勾选。 ```html &lt;table id="example" class="display" style="width:100%"&gt; &lt;!-- 表格...

    smartgit 19.1.5 windows 安装包

    - table control: added low-level property table.scrollToSelection to prevent scrolling to selection, e.g. after toggling the sort status Fixed Bugs ---------- - Compare: - resizing the window ...

    SAS.9.2.SQL.Procedure.Users.Guide

    - Greater control over the data processing flow. - Flexibility in handling loops and conditional statements. - **Use Cases**: - When detailed record-level processing is necessary. - For complex ...

    ICETOOL.PDF

    ICETOOL is a powerful and versatile data set processing and reporting utility that serves as a user-friendly batch front-end for DFSORT, IBM’s high-performance sort product. This utility simplifies ...

    sqlserver 存储过程中If Else的用法实例

    这个存储过程名为`P_Form_Control_Info_Add`,它接受7个参数:`@TypeName`、`@Description`、`@CtlColSpan`、`@Sort`、`@SourceID`、`@FieldID`和`@TableID`。这些参数在存储过程内部用于插入新的记录到`T_Form_...

    微软内部资料-SQL性能优化5

    This uniqueifier is a 4-byte value added as an additional sort key to only the rows that have duplicates of their primary sort key. You can see this extra value if you use DBCC PAGE to look at the ...

    Beginning COBOL for Programmers

    How to SORT data and use Input and Output procedures How to SEARCH tabular data How to use contained and external subprograms to create modular programs How to use the COBOL Report Writer How to write...

    JavaFX+Jfoenix 学习笔记(三)--TableView数据表格源码

    我们可以使用TableColumn的sortType和sortOrder属性来控制排序方式。 - 过滤数据通常涉及在ObservableList上应用过滤器,然后重新绑定到TableView。 7. **构建和运行**: - 项目构建工具如Maven(如pom.xml所示)...

    oracle文本导入导出工具-ozoradts

    " query="select * from fct_serv_product_stats_bk where rownum&lt;5" fixlen=yes enclose=\" nullif=NULL head=yes skip=1 errors=2 rows=3 load=8 control=fct_serv_product.ctl table=serv_pstats data="d:\temp\...

    js 關於跨域訪問的問題 unoin 之後排序問題

    2. **CORS (Cross-Origin Resource Sharing)**:这是一种现代浏览器支持的机制,服务器通过设置响应头`Access-Control-Allow-Origin`来允许特定的源进行跨域请求。它可以支持多种HTTP请求方法,包括GET、POST等。 3...

    powerbuilder中DATAWINDOW使用技巧

    - 导出至HTML:`if dw_1.SaveAs(docName, HTMLTable!, True) = -1 then`表示如果导出失败,则显示警告消息。 - 将HTML文件转换为Excel原生格式: - 创建OLE对象并连接至Excel应用。 - 设置Excel应用不显示警告。 ...

    COBOL程序设计试题

    - 排序标志设置:在文件描述中定义关键字,`SORT`或`MERGE`语句指定排序方式。 6. **IMS和CICS**: - IMS使用的DML是DL/I,用于交互式事务处理。 - CICS COBOL程序的限制包括对某些功能和语句的禁止使用,如文件...

    Program in LUA 2nd Edition.rar

    4.3 Control Structures 30 4.4 break and return 34 5 Functions 35 5.1 Multiple Results 36 5.2 Variable Number of Arguments 39 5.3 Named Arguments 42 6 More About Functions 45 6.1 Closures 47 ...

    hive简单使用共13页.pdf.zip

    2. **HQL语言**:HQL是Hive提供的SQL方言,支持DML(Data Manipulation Language)操作,如SELECT、INSERT、UPDATE和DELETE,以及DDL(Data Definition Language)操作,如CREATE TABLE、ALTER TABLE和DROP TABLE。...

Global site tag (gtag.js) - Google Analytics