Changes between Initial Version and Version 2 of Ticket #6427


Ignore:
Timestamp:
Dec 7, 2010, 12:57:35 AM (13 years ago)
Author:
Ryan J Ollos
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #6427

    • Property Owner changed from Jeff Hammel to Ryan J Ollos
    • Property Keywords jquery added
    • Property Priority changed from normal to high
  • Ticket #6427 – Description

    initial v2  
    11because input fields with other names than action_reassign_reassign_owner are created. They seem all to end with reassign_owner, however. (didn't check that in the sources)
    22
    3 workaround: [[br]]
    4 replace in autocompleteusers\htdocs\js\autocomplete_ticket.js [[br]]
    5 `$("#action_reassign_reassign_owner").autocomplete("../users", {` [[br]]
    6 by  [[br]]
    7 `$("[id$=reassign_owner]").autocomplete("../users", { ` [[br]]
     3workaround:
     4
     5replace in autocompleteusers\htdocs\js\autocomplete_ticket.js
     6
     7{{{
     8$("#action_reassign_reassign_owner").autocomplete("../users", {
     9}}}
     10with:
     11
     12{{{
     13`$("[id$=reassign_owner]").autocomplete("../users", { `
     14}}}