- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-29-2014 05:52 AM
Hi All,
Please help me to change the hint (tool tip text) on the inherited field. Just take an example of the "priority" field of "task" is having some hint which I need to change on "problem" form.
I think we can't use dictionary override in this case because hint is on field label form and not on system dictionary form.
Thanks...
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-29-2014 06:30 AM
Hi Pritam,
Try this if you want to change the title only for certain forms.
function onLoad() {
document.getElementById("label.problem.priority").title ="test";
}
This is an OnLoad Client Script on Problem form, which changes title of priorty field only on the problem form.
I have set it to test,you can enter whatever you want.
Regards,
Sachin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-29-2014 06:30 AM
Hi Pritam,
Try this if you want to change the title only for certain forms.
function onLoad() {
document.getElementById("label.problem.priority").title ="test";
}
This is an OnLoad Client Script on Problem form, which changes title of priorty field only on the problem form.
I have set it to test,you can enter whatever you want.
Regards,
Sachin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-29-2014 07:35 AM
Thanks Sachin...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-29-2014 08:10 AM
Welcome.
You can use 'document.getElementById' in lot of places. There is good example of dot walking on wiki which uses it.
Good Luck.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-06-2020 11:10 PM
can you please explain the part label.problem.priority in brackets of getelementbyId()