Oracle Apex-交互式网格-重置按钮

时间:2018-11-12 15:38:05

标签: oracle-apex oracle-apex-5 oracle-apex-5.1

在Oracle APEX的Interactive Grid工具栏中,如何使重置按钮显示为仅图标按钮。

2 个答案:

答案 0 :(得分:2)

I found another way by adding the jsinitialization code in the attribute section of Interactive Grid as below

function(config) {
                  var $ = apex.jQuery,
                  toolbarData = $.apex.interactiveGrid.copyDefaultToolbar(),
                  lastToolbarGroup = toolbarData[toolbarData.length - 1],
                  createButton = {
                                    type: "BUTTON",
                                    icon: "a-Icon icon-ig-reset",
                                    iconOnly: true,
                                    action: "reset-report"
                                  };
                   lastToolbarGroup.controls.pop();
                   lastToolbarGroup.controls.push(createButton);
                   config.toolbarData = toolbarData;
                   config.initialSelection = false;
                   return config;
                 }

答案 1 :(得分:1)

我认为我不明白您的问题... :)但是...

我认为没有办法编辑交互式网格的此功能。通过javascript可以实现,但是我认为这是不必要的工作。

$('button[data-action=reset-report] > span.a-Button-label').remove()

或CSS

button[data-action=reset-report] > span.a-Button-label {
   display: none;
}