Jump to content

In line edit font size


Recommended Posts

I have a tabular report that I allow to be edited at line level. When the boxes appear for editing, they are really huge and i don't want that. I just want to make them a smaller font. Is this possible?  You can refer on the attached screenshot.

font.png

Link to comment
Share on other sites

Hi Batchini,

Yes, that is possible. You need to add a Header and Footer on that particular DataPage. And then paste this code in the Header:
 

<style>
input[name*="InlineEdit"]{
font-size: 10px;
}
</style>

Note: You need to disable first the HTML editor under Advanced Tab before pasting the code. Also, you can change the font-size based on your preferred size. 

I hope this works for you.

Link to comment
Share on other sites

11 minutes ago, telly said:

Hi - Can we change the color of the text, cause I'm having that kind of issue(inside the inline edit)?

Just a little tweak to the code Barbie provided.

<style>
input[name*="InlineEdit"]{
color: black;
}
</style>

Of course, change 'black' to the desired color.

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
Reply to this topic...

×   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...