Comments
-
As an example, here is the patch file for the changes we added to HelpRequest.html. It relies on jQuery and jQueryUI. The 'DOMNodeInserted' is a unusual event for which to listen. It would be more explicit to use jQuery to trigger a custom event to which this code could be registered. The event trigger could then add…
-
A general-purpose solution could include hooks into custom javascript. The prevalence of javascript frameworks and plug-in would make a lot of customization as trivial as including a few lines of javascript. For example, in our WHD instance we have a field named "Project". The user should be restricted to a single value…
-
<pre> --- ./bin/webapps/helpdesk/WEB-INF/Helpdesk.woa/Contents/Resources/HelpRequest.wo/HelpRequest.html.orig 2013-07-18 04:32:52.000000000 -0400 +++ ./bin/webapps/helpdesk/WEB-INF/Helpdesk.woa/Contents/Resources/HelpRequest.wo/HelpRequest.html 2013-10-15 17:22:05.862674047 -0400 @@ -8,6 +8,33 @@…
-
The manager field is stored as a string representing a DN. The manager's first and last are not directly available on the employee AD record. In other contexts, I've created follow-up queries to retrieve records by DN; so I can subsequently get at the first (givenName) and last (sn) names of the manager. Of course, this…