Jump to content
  • 0

Hide Calculated Fields


Role21

Question

5 answers to this question

Recommended Posts

  • 0

Hi Role21,

Yes, that is possible. 

1. Using the Insert button at the lower right-hand corner of the DataPage Elements panel and insert two HTML Blocks.

2. Move the fields you would like to be hidden between these two HTML Blocks.

3. Open a div in the first HTML Block and set its display style to none.

<div style="display:none">

4. Close the HTML table tag in the following HTML block.

</div>

 

-JolliBeng

Link to comment
Share on other sites

  • 0
On 12/23/2018 at 3:31 PM, JolliBeng said:

Hi Role21,

Yes, that is possible. 

1. Using the Insert button at the lower right-hand corner of the DataPage Elements panel and insert two HTML Blocks.

2. Move the fields you would like to be hidden between these two HTML Blocks.

3. Open a div in the first HTML Block and set its display style to none.


<div style="display:none">

4. Close the HTML table tag in the following HTML block.


</div>

 

-JolliBeng

Hi @Role21,

You can use this solution, however, if you don't want or you can't enclose your calculated fields between two HTML blocks.

You can hide this using custom CSS code, to do that just to the following steps.

1. Go the the preview / deployed mode of your DataPage

2. Press F12 on your keyboard, then press Ctrl + Shift + C on your keyboard again. Then click on your calculated fields

3. Copy the ID of that field, and replaced text beside the '#' symbol in the code below. For example '#exampleID'

<style>
  #ID_of_Cal_field1 { display:noe }
  
   #ID_of_Cal_field2 { display:noe }
  
</style>

4.  Insert Header and Footer in your DataPage http://prntscr.com/m0c83k

5. Click on Header, then go to the advance tab, and ensure that this check box is unchecked http://prntscr.com/m0c8it

6. Go back to the Standard tab and copy and paste the code above with the ID of your fields. http://prntscr.com/m0c92y

 

I hope this helps.

- TsiBiRu

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...