Is it possible to display descriptive texts in the fields of work item templates on the web?
Hello everyone
we've expanded our ChangeRequest Management Pack and added a few new fields.
In our console template, we've used watermarks to describe these fields. We'd like to set up the same for our web view as well, but we don't know how to do it on the web.
Can anyone help us?
For Example:
Console:
Web:
Thanks,
Sarah
Best Answer
-
Geoff_Ross Cireson Consultant O.G.
Hello @Sarah_Geihs
You will need to use some custom JavaScript in the custom space. I suggest using a null valued custom task. Here's an example of the code to pop into the task.
$('[name="Description"]').attr("placeholder", "Placeholder text goes here");
Change "Description" so whatever the field is called.
You can add as many of these as you need.
Geoff0
Answers
Hello @Sarah_Geihs
You will need to use some custom JavaScript in the custom space. I suggest using a null valued custom task. Here's an example of the code to pop into the task.
Change "Description" so whatever the field is called.
You can add as many of these as you need.
Geoff