- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
为了说明我想要的:
| Category A | Category B | C || A.A | A.B | A.A | A.B | || A.A.A | A.A.B | A.B.A | A.B.B | B.A.A | B.A.B | B.B.A | B.B.B | |
我需要一个看起来有点像这样的标题,我想知道除了手动写入每一行之外是否还有其他方法可以做到这一点。 :D
最佳答案
内表mt_data[]
在cl_gui_alv_grid
保存有关前端如何显示网格的信息。每个单元格都用以下字段表示在单独的行中:
原来你可以设置mergehoriz
(和 mergevert
)为一个整数,定义有多少个相邻单元格将合并到单元格中。为了更改该表,我创建了一个子类 cl_gui_alv_grid
并实现了方法redraw
我就是这么做的。
这是我为此创建的演示报告。您需要一个带有自定义容器“CC”的 dynpro“100”和一个带有退出命令的状态“STATUS_0100”来运行它。
report zdemo_grid_merge.
call screen 100.
class cl_gui_alv_grid_merge definition inheriting from cl_gui_alv_grid.
public section.
methods redraw.
endclass.
class cl_gui_alv_grid_merge implementation.
method redraw.
field-symbols: <ms_data> type lvc_s_data.
loop at mt_data[] assigning <ms_data>.
case <ms_data>-row_pos.
when 1.
* The first row merges the first column with the next eight columns
* so it stretches for a total of nine columns
* It also merges the first row with the second row
if <ms_data>-col_pos = 1.
<ms_data>-mergehoriz = 8.
<ms_data>-mergevert = 1.
endif.
* Column ten in the first row is merged with the next five lines.
if <ms_data>-col_pos = 10.
<ms_data>-mergevert = 5.
endif.
when 3.
* Since line one and two are merged, row_pos 3 is the second line
* In the second line column one and five are extended by three columns
* to build two four column wide headers
if <ms_data>-col_pos = 1 or
<ms_data>-col_pos = 5.
<ms_data>-mergehoriz = 3.
endif.
when 4.
* Line three builds two column wide cells
if <ms_data>-col_pos = 1 or
<ms_data>-col_pos = 3 or
<ms_data>-col_pos = 5 or
<ms_data>-col_pos = 7.
<ms_data>-mergehoriz = 1.
endif.
when others.
* Everything else stays normal.
endcase.
endloop.
call method set_data_table
changing
data_table = mt_data[].
call method set_auto_redraw
exporting
enable = 1.
endmethod.
endclass.
data: go_cc type ref to cl_gui_custom_container.
data: go_grid type ref to cl_gui_alv_grid_merge.
types: begin of t_tab,
field01 type text255,
field02 type text255,
field03 type text255,
field04 type text255,
field05 type text255,
field06 type text255,
field07 type text255,
field08 type text255,
field09 type text255,
field10 type text255,
end of t_tab.
data: gt_tab type table of t_tab.
module status_0100 output.
perform init_grid.
set pf-status 'STATUS_0100'.
endmodule.
module user_command_0100_exit input.
set screen 0.
leave screen.
endmodule.
form init_grid.
data: lt_fcat type lvc_t_fcat.
data: ls_vari type disvariant.
data: ls_layo type lvc_s_layo.
if go_cc is not initial.
return.
endif.
create object go_cc
exporting
container_name = 'CC'
exceptions
cntl_error = 1
cntl_system_error = 2
create_error = 3
lifetime_error = 4
lifetime_dynpro_dynpro_link = 5
others = 6.
if sy-subrc <> 0.
message id sy-msgid type sy-msgty number sy-msgno
with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
endif.
create object go_grid
exporting
i_parent = go_cc
exceptions
error_cntl_create = 1
error_cntl_init = 2
error_cntl_link = 3
error_dp_create = 4
others = 5.
if sy-subrc <> 0.
message id sy-msgid type sy-msgty number sy-msgno
with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
endif.
perform get_fcat changing lt_fcat.
ls_vari-report = sy-repid.
ls_vari-username = sy-uname.
ls_vari-handle = '0001'.
ls_layo-sel_mode = 'B'.
ls_layo-no_headers = 'X'.
ls_layo-zebra = 'X'.
ls_layo-no_toolbar = 'X'.
perform create_table.
call method go_grid->set_table_for_first_display
exporting
is_variant = ls_vari
i_save = 'A'
is_layout = ls_layo
changing
it_outtab = gt_tab
it_fieldcatalog = lt_fcat
exceptions
invalid_parameter_combination = 1
program_error = 2
too_many_lines = 3
others = 4.
if sy-subrc <> 0.
message id sy-msgid type sy-msgty number sy-msgno
with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
endif.
call method go_grid->redraw.
endform.
form get_fcat changing ct_fcat type lvc_t_fcat.
data: ls_fcat type lvc_s_fcat.
data: lv_fname type lvc_fname.
data: lv_n(2) type n.
lv_fname = 'FIELD'.
do 10 times.
lv_n = sy-index.
ls_fcat-fieldname = lv_fname && lv_n.
ls_fcat-just = 'C'.
ls_fcat-outputlen = 20.
append ls_fcat to ct_fcat.
enddo.
endform.
form create_table.
data: ls_tab type t_tab.
clear ls_tab.
ls_tab-field01 = '------------- Double Line Header Stretching Over Four Cells -------------'.
ls_tab-field10 = 'Vertical Merge'.
append ls_tab to gt_tab.
append ls_tab to gt_tab.
clear ls_tab.
ls_tab-field01 = '--- Category A ---'.
ls_tab-field05 = '--- Category B ---'.
ls_tab-field09 = '--- Category C ---'.
append ls_tab to gt_tab.
clear ls_tab.
ls_tab-field01 = 'A.A'.
ls_tab-field03 = 'A.B'.
ls_tab-field05 = 'B.A'.
ls_tab-field07 = 'B.B'.
ls_tab-field09 = 'C.1'.
append ls_tab to gt_tab.
clear ls_tab.
ls_tab-field01 = 'A.A.A.1'.
ls_tab-field02 = 'A.A.B.1'.
ls_tab-field03 = 'A.B.A.1'.
ls_tab-field04 = 'A.B.B.1'.
ls_tab-field05 = 'B.A.A.1'.
ls_tab-field06 = 'B.A.B.1'.
ls_tab-field07 = 'B.B.A.1'.
ls_tab-field08 = 'B.B.B.1'.
ls_tab-field09 = 'C.2'.
append ls_tab to gt_tab.
clear ls_tab.
ls_tab-field01 = 'A.A.A.2'.
ls_tab-field02 = 'A.A.B.2'.
ls_tab-field03 = 'A.B.A.2'.
ls_tab-field04 = 'A.B.B.2'.
ls_tab-field05 = 'B.A.A.2'.
ls_tab-field06 = 'B.A.B.2'.
ls_tab-field07 = 'B.B.A.2'.
ls_tab-field08 = 'B.B.B.2'.
ls_tab-field09 = 'C.3'.
append ls_tab to gt_tab.
clear ls_tab.
append ls_tab to gt_tab.
append ls_tab to gt_tab.
endform.
为了完成 dynpro 100:
process before output.
module status_0100.
process after input.
module user_command_0100_exit at exit-command.
我调用redraw
更改方法mt_data[]
并用 set_data_table
保存到网格的实际数据表中。请注意调用refresh_table_display
将摆脱这些更改,您必须调用 redraw
来跟进此操作之后每次。另外,工具栏功能会破坏合并,因此您也必须手动实现它们。
这显然离完美还很远,但我认为这是一个不错的基础。
关于header - ALV 或任何其他网格布局中的两级列标题?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3878386/
我在让“@header”或任何其他@规则在ANTLR中工作时遇到麻烦。具有非常基本的语法,如下所示: grammar test; options { language = CSharp2;
我对来源和寄宿有疑问 我有一个ajax页面“Page A”,它将称为ajax提要“Page B” 我看到来自ajax调用的“页面B”的请求 header 具有源“http://mydomain.com
我在 pandas 中使用了数据透视表并获得了所需的数据框格式,但现在我有两行标题。数据透视表后的结果数据框如下: scenario Actual Plan
我在 pandas 中使用了数据透视表并获得了所需的数据框格式,但现在我有两行标题。数据透视表后的结果数据框如下: scenario Actual Plan
我想在主机将它们发送到网络之前修改数据包头(IP 头、TCP 头)。 例如,如果我使用 firefox 进行浏览,那么我想拦截所有来自 firefox 的数据包并修改 IP/TCP header ,然
我的 header 内容被包装到#header 中,但是当我设置边框显示结构时,它显示我的#header 的内容出现在#header 本身之后。可能是什么问题?这是我的代码: #header { bo
我是一名 Web 开发人员,使用过 PHP 和 .NET。有一年多的 Web 工作经验,我一直无法彻底了解浏览器缓存功能,希望这里的 Web Gurus 可以帮助我。我心中的问题是: 浏览器实际上是如
伙计们,我有一个问题,我不知道如何在一个 header 中连接多个 header ,我们称它为“主 header ”并使用该 header 中的函数,例如 // A.h #include class
我有一个包含 SOAP 消息的 XMLHTTPRequest。 我想添加用于标识消息并将由 C# Web 服务使用的 guid。 GUID 的目标是识别特定用户,并应护送所有用户请求以在服务器上进行身
我一直在阅读粘性标题,这是我目前所发现的。第一个粘性 header 效果很好,但是当它遇到第一个 header 时,我如何向上滚动第一个 header 并使第二个 header 卡住? http://
我想将当前基于 TableView 的数据网格转换为新的 UICollectionView 类。 这就是我当前的网格的样子: 我的网格有两个标题: 年份(2006a、2007a 等)和 类型(“收入”
我目前正在使用 Apollo 服务器。我正在尝试在响应 header 中设置一个属性。并且此属性是从客户端 graphQL 请求 header 中检索的。 我在网上查了一下。并看到了诸如使用插件或扩展
我的 Controller 的方法需要设置一个标题,例如X-Authorization .创建新对象( store Action )后,我执行转发以显示新创建的对象( show Action ): $
我正在研究一些关于 VLAN 的事情,发现了 VLAN 标签 和 header 。 如果我们有标准 802.3 以太网帧 的 MTU(1518 字节), header 802.3 中包含什么? 另外,
我是放心和 Java 的新手,我正在尝试做一个非常基本的测试来检查 API 的响应是否为 200 ok。 谁能告诉我我需要在下面的脚本中更改什么才能传递多个 header Id、Key 和 ConId
在我的项目中,我需要知道 zlib header 是什么样的。我听说它相当简单,但我找不到 zlib header 的任何描述。 例如,它是否包含魔数(Magic Number)? 最佳答案 zlib
我正在使用 JMeter 测试 HTTP 服务器,该服务器接受并验证 APIKey 并在成功时返回一个有时限的 token 。如果我有 token ,我想发送一个 token ;如果没有,我想发送一个
以太网 header 是什么样的? 是吗: 1|2|3|4|5|6|7|8|9|10|11|12|13|14|15|16|17|18|19|20|21|22|23|24|25|26|27|28|29|
我们的应用程序支持 CORS 配置 header 。我在两个不同的主机上分别配置了 testApp。两种设置都相互独立工作。host1 上的应用程序配置有 CORS header Access-Con
tlhelp32.h 不包含 windows.h 本身是有原因的吗?我一直在与大量的编译器错误作斗争,因为我在包含 tlhelp32.h 之后包含了 windows.h。这是设计决定还是出于什么原因?
我是一名优秀的程序员,十分优秀!