Only display 'Edit' link on certain rows on apex report

后端 未结 2 988
攒了一身酷
攒了一身酷 2021-01-23 09:52

I have the following report structure which shows sales targets and sales for products throughout the year.
Each product will have two rows: a row showing sales and a row sh

2条回答
  •  轻奢々
    轻奢々 (楼主)
    2021-01-23 10:10

    Usally i use something like this:

    1. In "Edit Column" -> "Column Link" -> "Link Attributes" add the folowing string:

      class="#TYPE#"
    2. Add this css style to your page:

      .sales_target { display: none; }

    Your link will look like:

    sales_target_edit
     or
    sales_edit
    

    All links with class="sales_target" will hide.

提交回复
热议问题