cancel
Showing results for 
Search instead for 
Did you mean: 

Disable help text in goal plan milestones field

lillabozo
Explorer
0 Kudos

Dear all,

is it possible to disable the help text (appears upon mousehover the blue question mark) in the goal plan? The help text appears only above the table (field id="milestones") in the goal plan.

<field-definition id="milestones" type="table" required="false" detail="false" viewdefault="off" showlabel="true" field-show-coaching-advisor="false" cascade-update="push-down">

In case the help text cannot be disabled, is it possible to edit the content?

Thanks a lot!

Best

Lilla

karthik1gobburu
Participant
0 Kudos

Hello lillabozo01

I also have a similar requireement where i need question mark symbol near every field in Goal Plan, Can you advice me as what solution have u found?

karthik

View Entire Topic
JM_1
Product and Topic Expert
Product and Topic Expert

Hi lillabozo01 and karthik.gobburu

The help text that appears in the Milestones field can be removed.

In the XML template, make sure to delete the <field-description> that appears within the field-definition of milestones. If you want to keep it, you can absolutely change the text displayed in the help text.

<field-definition id="milestones" type="table" required="false" detail="false" viewdefault="off" showlabel="true" field-show-coaching-advisor="false" cascade-update="push-down">

<field-label>Milestones</field-label>

<field-description><![CDATA[This is a description of the milestones field]]></field-description>

<table-row-label lang="en_US">Milestones</table-row-label>

<table-column id="start" type="date" required="false" validate-start-before-due="true" cascade-update="push-down">

<column-label>Target Date</column-label>

</table-column>

<table-column id="desc" type="textarea" required="false" cascade-update="push-down">

<column-label>Milestone</column-label>

</table-column>

<table-column id="due" type="date" required="false" cascade-update="push-down">

<column-label>Actual Date</column-label>

</table-column>

</field-definition>

Hope this will help,

Best regards,

Jordi

karthik1gobburu
Participant

Thanks Jordi-

Really helpful.

One more question can we add the help text ( question mark) after every field in Gola Plan ( like Goal Name, Start Date, Description etc), Will the same <field-description> work for these as well, Please advice