I need to change the help text font and color
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-28-2024 02:13 AM
Hi All,
i have written below code to populate the help text based on the value chosen but its coming as plaintext in the form with the blue background . I want to change the text color , background color and the font size. Could you please guide me in how to achieve this?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-28-2024 02:21 AM
Hi @Jeni2
I found this article
Regards
Shaqeel
***********************************************************************************************************************
If my response proves useful, please indicate its helpfulness by selecting "Accept as Solution" and " Helpful." This action benefits both the community and me.
***********************************************************************************************************************
Regards
Shaqeel
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-28-2024 02:32 AM
Hi @Jeni2 Play with this code
var fieldName = 'priority';
g_form.showFieldMsg(fieldName, 'Here is my message', 'error');
// Change the style
var msgEl = $(g_form.tableName + '.' + fieldName + '_' + 'fieldmsg').down();
msgEl.setStyle({
backgroundColor: 'lightblue',
borderColor: 'orange',
color: 'purple',
});
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-28-2024 03:51 AM
Hi @Sid_Takali ,
below script is not working as expected
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-28-2024 04:28 AM
Hi @Jeni2 ,
For showFieldMsg you can show it as warning, error or info you cannot style it out of the box, instead you can use html field,
Please refer the below article,
Please mark this comment as Correct Answer/Helpful if it helped you.
Regards,
Swathi Sarang