Apex 5.1 交互式网格隐藏工具栏按钮
Apex 5.1 interactive grid hiding toolbar buttons
是否可以允许添加和保存操作但隐藏网格工具栏中的 "add row" 和“编辑”按钮?当我尝试取消选中这些按钮时,我无法再以编程方式向网格添加数据. 我如何允许以编程方式添加多行并具有 "save" 按钮但隐藏 "add row" 和 "edit"?
尝试将此 css 添加到您的页面:
#myStaticIgId button[data-action="selection-add-row"], #myStaticIgId div[data-action="edit"] {
display: none !important;
}
是否可以允许添加和保存操作但隐藏网格工具栏中的 "add row" 和“编辑”按钮?当我尝试取消选中这些按钮时,我无法再以编程方式向网格添加数据. 我如何允许以编程方式添加多行并具有 "save" 按钮但隐藏 "add row" 和 "edit"?
尝试将此 css 添加到您的页面:
#myStaticIgId button[data-action="selection-add-row"], #myStaticIgId div[data-action="edit"] {
display: none !important;
}